每当我登录我的应用程序时,我都会收到以下异常...
javax.servlet.ServletException:com/sun/org/apache/xalan/internal/xsltc/trax/TransformerFactoryImpl(不支持的major.minor版本49.0)
这是什么意思,我该如何解决这个问题?
您的代码是使用Java 1.5编译的,并且您尝试使用Java 1.4(或更低版本)运行它
解决方案是
a) Run it with Java1.5 ( perhaps using WAS 6+ )
b) Recompile it with Java 1.4
Run Code Online (Sandbox Code Playgroud)
要么
c) Recompile it with Java.15 but specifying the -target flag ( javac -target 1.4 .... )
Run Code Online (Sandbox Code Playgroud)
关键是,你试图在1.4 vm中运行1.5字节码
归档时间: |
|
查看次数: |
39013 次 |
最近记录: |