cracq
cracq

Reputation: 91

minimum requirements to run a java web application

which are the minimum requirements to run a java web application with spring 2.5 and Hibernate 3? I mean, referred to Tomcat version, Mysql version, and Java EE version. I use Java EE 6, Mysql 14.14 distrib 5.1.41 and Tomcat 7 but i need to know the lowest version in which can be run

Upvotes: 1

Views: 1787

Answers (1)

Bozho
Bozho

Reputation: 597106

It would run on a reasonably low version of everything:

  • spring runs on tomcat 5.5 for sure, which is way old (and might even run on 5.5)
  • hibernate's MySQL Dialect should be fine with MySQL 4.1

For exact compatibility you should check release notes, but it is unreasonable to use so old version of these technologies anyway.

Upvotes: 1

Related Questions