LittleBill

The identifier [default] is not a valid Java identifier as required by section 1.19 解决方法

新买一台笔记本,在windows中安装最新版Tomcat7,打开之前的项目神器的事情发生了。因为之前我可以保证项目可以正常运行,但是到目前最新Tomcat7最新版中无法运行,错误信息提示如下:
[code]
javax.el.ELException: The identifier [default] is not a valid Java identifier as required by section 1.19 of the EL specification (Identifier ::= Java language identifier). This check can be disabled by setting the system property org.apache.el.parser.SKIP_IDENTIFIER_CHECK to true.
[/code]
[……]

继续阅读

Continue reading

Tomcat Native incompatible version 1.1.24 解决方法

原因:Tomcat与JDK中的Tomcat Native版本不兼容,Tomcat版本高与JDK版本低造成,解决方法是去Tomcat官网下载覆盖掉JDK中的”tcnative-1.dll”。

先说下环境:
OS:win7.x64bit
JDK:jdk1.6.0_43
Tomcat:apache-tomcat-7.0.59-x86 或者 apache-tomcat-7.0.59-x64

启动tomcat是,提示这个严重错误
[code]
2015-4-5 17:58:50 org.apache.catalina.core.AprLifecycleListener init
严重: An incompatible version 1.1.24 of the APR based Apache Tomcat Native library is installed, while Tomcat requires version 1.1.32
[/code]

解决方法:
[……]

继续阅读

Continue reading