Search the web
Sign In
New User? Sign Up
djug · Denver Java Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1072 - 1101 of 2118   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1072
Partha, Check out https://gen4j.dev.java.net/ -- it is a simple source code generator that will create a JavaBean, SQL DDL, and DAO from an XML Schema. HTH, ...
Scott Davis
ScottDavis99
Offline Send Email
Jan 2, 2004
4:43 pm
1073
DJUG Members: The DJUG Object Oriented Architecture SIG is officially under way! WHEN: 1st Wednesday of each month from 6:15 to 8 PM (first meeting is 4 Feb...
gallaman1
Offline Send Email
Jan 7, 2004
3:43 pm
1074
Hi all, Following a yearly tradition, JetBrains has the personal license of IntelliJ IDEA at $249. In case you or your team might be interested... Happy New...
Emilio Suarez
emiliosuarez
Offline Send Email
Jan 7, 2004
3:43 pm
1075
An object oriented database (OODB) is really just a relational database with an adapter to make it look like it holds objects, right? Wrong! There are...
george.allaman@...
gallaman1
Offline Send Email
Jan 7, 2004
3:45 pm
1076
The Denver Java User Group is pleased to announce we will be featuring Dave Curry on the middle ground between HTML and Swing for our next meeting on January...
Greg Ostravich
gostrav
Offline Send Email
Jan 8, 2004
9:40 pm
1077
hi all, I am interested in knowing the most efficient way of generating primary keys to be used by the EJB tier at the time of creating a new database record. ...
web dev
programming95
Offline Send Email
Jan 12, 2004
4:30 pm
1078
hi, what is the efficient way of handling constants in a large scale J2EE app (using EJBs). I can think of the following options: - use a single interface that...
web dev
programming95
Offline Send Email
Jan 12, 2004
8:02 pm
1079
hi, Here is an interesting issue I am running into. I have a web application first.war that has some JSPs, action classes, utilities etc., I have another web...
web dev
programming95
Offline Send Email
Jan 15, 2004
8:41 pm
1080
... This is the best way that I've seen in my experience. You could put the jar in $CATALINA_HOME/shared/lib, but it'd be easier to deploy if you just add it...
Matt Raible
matt_raible
Offline Send Email
Jan 15, 2004
9:15 pm
1081
Vishal, I agree with Matt. If separate web applications need to use the same classes, package those shared classes in a JAR, and package the JAR in each WAR...
Tom McQueeney
jinidev
Offline Send Email
Jan 15, 2004
10:36 pm
1082
The presentation PowerPoint slides and code from last night's Denver JUG presentations are online at the Denver JUG web site. Visit ...
Tom McQueeney
jinidev
Offline Send Email
Jan 16, 2004
6:07 am
1083
Hi All, I use Java to create utilities to perform whatever function that I need at the time. Mostly I am an Oracle DBA so all my programs interact with a ...
John Garmany
garmanyj
Offline Send Email
Jan 16, 2004
5:15 pm
1084
Spring (http://www.springframework.org) addresses this by allowing you to place all your bindings (or config parameters) in an XML file. All your classes need...
Matt Raible
matt_raible
Offline Send Email
Jan 16, 2004
5:44 pm
1085
You can also put the sharedclasses.jar in the root of your .ear file along with your .war files and then add sharedclasses.jar to the Class-Path entry in the...
Eric Weidner
esweid01
Offline Send Email
Jan 16, 2004
6:08 pm
1086
A static class would also work, and Spring is probably overkill for something small. I think Springs' main benefit is that you can use it to bind your...
Matt Raible
matt_raible
Offline Send Email
Jan 16, 2004
6:43 pm
1087
Would using a static class also work? You would load the values in the static class when the application initializes and then refer to the class as values are...
David Gilbert
gilbert_systems
Offline Send Email
Jan 16, 2004
6:51 pm
1088
Maestro is a scaled-down version of a Java application that NASA uses to control the Mars rover (http://mars.telascience.org/home.) In it they've created...
Eric R. Turner
eric_r_turner
Offline Send Email
Jan 17, 2004
3:43 am
1089
Well, my first thought would be to start with a JTable and render your own JTree-like cell with a custom CellRenderer. There's an article on Sun's site that...
Derek Chen-Becker
dcb1877
Offline Send Email
Jan 17, 2004
3:35 pm
1090
You know, when I was looking around for the ref, there are a lot of people who have implemented it on their own (google for "JTreeTable"). I wonder if this is...
Derek Chen-Becker
dcb1877
Offline Send Email
Jan 17, 2004
3:39 pm
1091
Joshua Bloch recommends that one considers using factory methods instead of construtors. Is it a good idea to forbid public constructors, wherever possible,...
Calen Martin D. Legaspi
calenmartin
Offline Send Email
Jan 19, 2004
6:41 am
1092
Static method is used to call a constractor in situations like Factory and Singleton. Evgeny Gesin Javadesk CEO / Founder ... ...
Evgeny Gesin
evgenygesin
Offline Send Email
Jan 19, 2004
9:06 am
1093
Hmm.. I don't think its a good idea to make it part of your design that you forbid public constructors. Sometimes, of course, its necessary, for example in a...
Johnathan James
jjames@...
Send Email
Jan 21, 2004
3:15 am
1094
Grady Booch will speak at XP Denver this coming Monday, January 26th. The auditorium doors will open at 6:00 PM, with the presentation starting around 6:30 PM....
Alex
aviggio
Offline Send Email
Jan 21, 2004
8:24 am
1095
... ^^^^^^^^^^^^^^^^^^^^^^^ This is slighly off topic, but in the C++ world, without garbage collection (hard to imagine now) I used a library that had a...
Bruce Bailey
brucecb03
Offline Send Email
Jan 21, 2004
3:58 pm
1096
My apologies for not forwarding these details earlier. - Alex *** Just a quick reminder that Grady Booch will be speaking at XP Denver this Monday, January...
Alex
aviggio
Offline Send Email
Jan 23, 2004
10:23 pm
1097
The team I'm about to manage is mostly composed of programmers new to Java. I believe none of them are familiar with Struts or JSTL, but they have recently...
Calen Martin D. Legaspi
calenmartin
Offline Send Email
Jan 24, 2004
6:19 pm
1098
dude, this whole "kill the scriptlet" movement is getting out of control in my opinion... nothing wrong with using a scriptlet tag to get at an Object stored...
kellybarnes.
javakel@...
Send Email
Jan 24, 2004
7:37 pm
1099
I've done JSPs for 5 years and I used scriplets for the first 3. Now I use JSTL almost exclusively. For me, it's easy to learn, cleaner to write, and there's...
Matt Raible
matt_raible
Offline Send Email
Jan 24, 2004
8:01 pm
1100
I have to agree with Matt here, using scriptlets from the get-go in a project is asking for nothing but headaches and maintenance nightmares. Pick the correct...
Sue Spielman
sue_spielman
Offline Send Email
Jan 24, 2004
8:21 pm
1101
I agree with Sue and Matt. I had to code with scriptlets on a project (because they didn't believe in custom tags/actions) and absolutely hated it. Scriptlets...
Tom Marrs
thomasamarrs
Offline Send Email
Jan 25, 2004
12:31 am
Messages 1072 - 1101 of 2118   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help