DENVER JAVA USERS GROUP http://www.denverjug.org Bill Dudney's talk this Wednesday, July 14th will take you through the basics of building a JavaServer Faces...
XP Denver's July meeting is scheduled for Monday, July 26th with special guest speaker Jim Highsmith. The meeting will be held at the Qwest Auditorium in...
hi all, Is it a good practice to keep JSP pages under web-inf folder to prevent direct access to JSP pages. Are there any issues associated in doing this. ...
hi all, In a J2EE internet application, what is the best way to store/manage images and word document templates? Should these be stored inside a database table...
The J2EE specification does not allow clients to view JSP pages in their raw form. They are always compiled first. There might be away around this by hacking...
Ok, so this might be a little trivial... In Java class, where do you put your fields? Near the top or near the bottom? I'm used to writing out all my fields...
... My understanding is that the convention on ordering class elements is this: constants static members non-static members static initializers constructors ...
While it doesn't explicitly state the order in which ivars, constructors, methods, etc. should appear take a look at the "Code Conventions for the Java...
All, The GOF (Gang of Four) Design Patterns Sig will have its second meeting tomorrow Wednesday the 21st. This is a great opportunity to learn more about...
hi all, I do know that there is a reference implementation of JAXB by the Sun Microsystems. Is there any other implementation of the JAXB specification that...
We use castor which wasn't exactly "JAXB compliant but was more stable, and we had a few bugs in JAXB and castor, and with castor, we could go fix the bugs...
DJUG, My company is looking into using Continuous Integration. We are currently researching the available tools to find the right tool(s) for the company and...
Jeremy Whitlock
jwhitlock81@...
Jul 26, 2004 12:27 pm
1306
I haven't used these, but apache has two products. One is XMLBeans ( http://xml.apache.org/xmlbeans/ ) and the other is part of jakarta, betwixt ...
Jeremy, A lot of it also depends what other tools you select such as Code Management system. I have implemented all three technologies at multiple companies...
I don't think Maven has anything in it currently for CI, though Maven-2 will have something called Continuum. There's also Codehaus' DamageControl, though it's...
I am looking for a java util lib to serialize java bean into XML string, which will include the tags from bean attributes and value in it. I tried Apache...
Hi, I have a client that needs J2EE contractors for a 6-8 month project. They are located in downtown Denver. Skills are as follows: * J2EE: EJB Tier...
Here is my scenario: One EJB has methodA() with "Required" transaction attribute, and methodB() has "RequiresNew" attribute. When client calls methodA() in...
I would also suggest you look at XML Beans which is an Open Source project at Apache. I have written a paper that compares coding in Castor, XML Beans and...
Well, not if the method call is local to the Bean class. If methodA() just calls methodB() locally, meaning something like: methodA(){ ... methodB(); ... } ...
Pedro, The J2EE version is less critical than the EJB version. There is little on the multiple-choice portion of the test that is J2EE-version specific except...
Take a look at JSX: http://www.csse.monash.edu.au/~bren/JSX/ There is also a commercial version available. It handles nested objects and two way associations...
Scott, Sounds like you know this area pretty well. What is driving the proliferation of Java to XML serialization packages? Do the various packages really...
Hi Jeremy, ... I chose to focus on Ant and CruiseControl as the ingredients for continuous integration recipes in my recently-released book "Pragmatic Project...
Take a look at this Open Source project - XStream (http://xstream.codehaus.org). It is very easy to use and it handles nested relationships quite well. It...