该用户从未签到
|
Stuts2的"struts.devMode"设置成true后,不起作用的解决办法7 A! Z$ l. z; P/ y1 a3 w ?
不用' K& A4 f( G8 k
<constant name="struts.devMode" value="true" /># r# p. P# k! y( C
改成3 p# m- O5 S; W; z8 F
<constant name="struts.configuration.xml.reload" value="true"/>
2 _/ k% Y( J! t$ B1 ~" ]2 f有人说是因为tomcat加了空格的问题,具体不清楚。1 Y& c4 T2 s0 C& e0 ~
下面是4个开发模式常用配置的简介---
6 ^$ V/ ^( C2 l; o% A <!-- 开启使用开发模式,详细错误提示 -->
; H) G: M, c9 D3 x7 }6 k <!-- <constant name="struts.devMode" value="true"/>-->- X' v- X, X, c1 r' g
<!-- 指定每次请求到达,重新加载资源文件 -->
; V3 J4 N- X; C1 i <!-- <constant name="struts.i18n.reload" value="true"/>-->
3 j$ ~8 e' M- V% i6 t. Q. ` <!-- 指定每次配置文件更改后,自动重新加载 -->4 z. [: o0 L0 n8 ?+ m4 c$ I6 f
<!-- <constant name="struts.configuration.xml.reload" value="true"/>--> w, w3 o/ U0 P1 l
<!-- 指定XSLT Result使用样式表缓存 -->5 I7 V" i0 g. K2 W4 d, p7 F6 p
<!-- <constant name="struts.xslt.nocache" value="true"/>-->1 x3 l; k* ~$ z! Q8 R7 k
这样就好使了,网上copy的哈
+ B6 g: ^9 n& q$ l+ H. e" ?( \& r& m$ g3 p7 c. i# Y
4 P# M! C1 k: n2 V4 Z |
|