[jboss-user] [Beginners Corner] - Re: ClassNotFoundException whereas the JAR is here!

2007-12-28 Thread sarbogast
You were right, spring-2.0.7.jar was not referenced in application.xml. Now it is and I don't have this ClassNotFoundException. I keep getting strange Spring internal errors like LangNamespaceHandler does not implement NamespaceHandler interface even though it does. But I think this is a

[jboss-user] [Beginners Corner] - ClassNotFoundException whereas the JAR is here!

2007-12-27 Thread sarbogast
I have a classloading issue with an EAR application. It contains: | * spring-2.0.7.jar | * myapp-core.jar | * myapp-web.war | In myapp-web.war, there is a WEB-INF/web.xml file with the following: | web-app | !-- ... -- | listener |

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Hibernate 3, MySQL and nullable timestamp

2007-08-25 Thread sarbogast
I've got an issue with Hibernate 3 hbm2ddl and my MySQL 5.0 database One of my entities has a field that is mapped onto a TIMESTAMP column. This field can be null but in MySQL, a TIMESTAMP can only be null if specified in the column declaration. From MySQL documentation: anonymous wrote : |