Unsupported major.minor version 49.0

后端 未结 6 1874
庸人自扰
庸人自扰 2020-12-01 15:20

I am getting the following exception whenever I login to my application ...

javax.servlet.ServletException: com/sun/org/apache/xalan/internal/xsltc/

6条回答
  •  悲&欢浪女
    2020-12-01 15:38

    Your code was compiled with Java 1.5 and your trying to run it with Java 1.4 ( or lower )

    The solution is

    a) Run it with Java1.5 ( perhaps using WAS 6+ ) 
    b) Recompile it with Java 1.4
    

    or

    c) Recompile it with Java.15 but specifying the -target flag ( javac -target 1.4 .... ) 
    

    The point is, you are trying to run 1.5 bytecode in a 1.4 vm

提交回复
热议问题