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, ...
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...
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...
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...
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...
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. ...
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...
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...
... 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...
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...
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 ...
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...
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...
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...
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...
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...
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...
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...
Joshua Bloch recommends that one considers using factory methods instead of construtors. Is it a good idea to forbid public constructors, wherever possible,...
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@...
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....
... ^^^^^^^^^^^^^^^^^^^^^^^ This is slighly off topic, but in the C++ world, without garbage collection (hard to imagine now) I used a library that had a...
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...
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...
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@...
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...
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...
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...