- 浏览: 13934 次
最新评论
文章列表
1.读取XML文件
<?xml version="1.0" encoding="UTF-8"?>
<userlist>
<user>
<name>zhangsan</name>
<mobile>123456789</mobile>
<email>zhangsan@125.com</email>
<birthday>1980-06-26</birthday>
</user>
...
1.错误:
Error parsing XML: /hibernate.cfg.xml(6) Element type "hibernate-configuration" must be declared.
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hiber ...
java.lang.OutOfMemoryError: PermGen space
在preferences的 tomcat JDK选项下
Optional Java VM argument框输入参数:
-Xms512m -Xmx512m -XX:PermSize=32M -XX:MaxPermSize=256M
即解决
Java文件使用utf-8的编码时,用UltraEdit打开,会出现乱码
设置:
Advanced-Configuration-General
勾选Auto Detect UTF-8 Fiels即可
1.struts2框架将自动加载放在WEB-INF/classes路径下的struts.xml文件
或者使用config参数来配置
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
<init-param>
<param-name>config</param-name&g ...
根据文章:
http://qingxing30.iteye.com/blog/714958
配置什么的都对,最后发现是struts2-spring-pluginxxx.jar没加
但还出现了个小插曲
加了jar包之后,仍然不对
无意中重新部署了tomcat,才成功
后来发现重新加载了jar包之后,不redeploy下工程,不加载。
使用
ClassPathResource er = new ClassPathResource(".");
String path = er.getFile().getAbsolutePath();
获取CLASSPATH路径
为:
E:\study\struts2spring\WebRoot\WEB-INF\classes
为了获取配置文件spring.xml,需要将配置放到src目录下,编译时自动将该配置文件
放到classes目录下
ClassPathResource isr = new ClassPathResource(" ...
使用<s:form>标签出现如下告警:
2012-8-8 19:23:15 org.apache.struts2.components.Form evaluateExtraParamsServletRequest
警告: No configuration found for the specified action: 'AjaxTest' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
jsp代码
<s:form id="theForm1&qu ...