Search Results

3
votes
4answers
4k views

Reasons of getting a java.lang.VerifyError

I'm investigating the following java.lang.VerifyError java.lang.VerifyError: (class: be/post/ehr/wfm/application/serviceorganization/report/DisplayReportServlet, method: getMonthDat …
0
votes

Is there a Problem with JPA Entities, Oracle 10g and Calendar Type properties?

I already had my share of problems with JPA and timestamps. I've been reading in the oracle forums and pleas …
1
vote

When Hibernate flushes a Session, how does it decide which objects in the session are dirty?

Take a look to org.hibernate.event.def.DefaultFlushEntityEventListener.dirtyCheck Every element in the session goes to this method to determine if it is dirty or not by comparing with an untouched …
5
votes

J2EE App Server Hello World

The JavaEE (they dropped the 2) space is pretty big. A good tutorial to start is the one from Sun. For a simple hello wo …
4
votes

Serializing Date in Java

The date class has a clunky API. A better implementation is Joda Time. It also allows you to convert your date in a ISO8601 format (yy …
0
votes

j_security_check and JAAS

Use what you container provides and don't implement your database lookup to do this. When the container knows who is logged in, you can use the roles to restrict access to certain pages. There are …