I have a strange problem.

I have configured our Websphere Application Server to run Java 5. Its a really old application that I have migrated from Java 4.

If I in the jsp page print

System.getProperty("java.version")
System.getProperty("java.specification.version")
System.getProperty("java.vm.name")

I get

Java version: 1.5.0
java.specification.version: 1.5
java.vm.name: IBM J9 VM

However, If I in the jsp change the code from List to List<Object> I get the following exception:

The type ArrayList is not generic; it cannot be parameterized with arguments <Object> JSPG0091E: An error occurred at line: 79 in the file: /jsp/archive/archiveoverview.jsp JSPG0093E: Generated servlet error from file: /jsp/archive/archiveoverview.jsp C:\SDP75\runtimes\base_v61\profiles\was61profile1\temp\CR122599Node01\server1\myifEAR\myif.war\jsp\archive\_archiveoverview.java : 199 : Syntax error, parameterized types are only available if source level is 5.0

How can this be???

link|improve this question

3  
this may help - stackoverflow.com/questions/2036544/…. – Perception Feb 22 at 11:41
2  
Websphere 6.1 is a J2EE 1.4 Container, but running on a JDK 1.5... – mglauche Feb 22 at 12:41
Thanks, that helped. I suggest just to close this thread then – Shervin Feb 22 at 13:24
@mglauche whats your point? – Shervin Feb 22 at 13:26
feedback

1 Answer

up vote 3 down vote accepted

The JVM used to run WebSphere Application Server is different from the compiler compliance level used to compile JSPs running within the server. See this technote: Using Java 5 language feature in a JSP targeting WebSphere Application Server v6.1.

link|improve this answer
Although, I think this is a duplicate, I will accept since this is exactly what I did. – Shervin Feb 23 at 8:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.