Reputation: 1128
As of now we are using Struts1.2.4 with java4. We want to upgrade it to Java5. Java 5 has so many deprecated method in EE. Will struts 1.2.4 work with java 5?
Upvotes: 1
Views: 523
Reputation: 272237
Note that although they're deprecated, they still will exist/function as before. Deprecation just means that they will disappear in a future edition.
Regardless of the deprecation, I would schedule some serious testing just to make ensure behaviour hasn't changed (I do this for all platform migrations, no matter how trivial).
Upvotes: 2
Reputation: 15796
I think Java 1.5 itself should be okay, but if you are running struts 1.2.4, it seems to me that your app may have other dependencies that are quite old as well. Servlet container version (tomcat 4?) is one thing that comes to my mind. If it's worth-while to upgrade to Java 1.5, it may also be worth-while to move to struts 1.3.9 or even struts2.
Upvotes: 2
Reputation: 24330
Yes, I've used it on previous projects and can't even think of any major caveats. If I were you, I'd give it a quick test. You should be fine.
Upvotes: 1