Hayato Kazame wrote:
Mark Spritzler wrote:You can use any version you want in any version of JBoss. Spring is POJO based and runs the same no matter the deployment environment.
Unlike Java EE where you have to have a compliant version of the app server to match the Java EE version you are using.
Mark
Ooooo.....very clear....thanks a lot..........LAW
OH! I should add one thing. There can be some versioning with relation to an app server. But it is the JDK version that is the issue.
For instance. Spring 3.x or higher requires Java 5 or higher.
Spring 2.x requires Java 1.4 or higher
and Spring 1.x requires Java 1.3 or higher.
But who is going to use Spring 1.x anymore.
And each version is 100% backwards compatible. Meaning I have deployed a Spring 1.x web app into a Java 6
Tomcat and it worked perfectly, no changes.
Mark