Search Results

1
vote
1answer
304 views

ICEFaces action vs actionListener

I am not clear on the difference between these two methods. I see that the actionListener takes an ActionEvent as a parameter, but both may be tied to a method in the backing bean. Is the …
0
votes
3answers
2k views

Spring JPA and persistence.xml

I'm trying to set up a Spring JPA Hibernate simple example WAR for deployment to Glassfish. I see some examples use a persistence.xml file, and other examples do not. Some examples use a dataSource …
0
votes
3answers
70 views

How can I split out individual column values from each line in a text file?

I have lines in an ASCII text file that I need to parse. The columns are separated by a variable number of spaces, for instance: column1 column2 column3 How wo …
1
vote
1answer
71 views

Mailing Labels - Java

I need to incorporate the printing of mailing labels in my web application. The addresses are in a DB, and the function will allow the user to select addresses, then hit a button to print mailing l …
3
votes
4answers
85 views

Properties for dev and production

I have a GlassFish/j2ee application, and I develop on one box, and production is a remote box. I have a function that makes files, and I need the files' location to be different based on my dev box …
0
votes
3answers
53 views

Building Reports with Java

I am building a j2ee web application with a MySQL db. I need to whip up some reports, and slice and dice the data in various ways. Is it best to tackle each report requirement, write the code to se …