该用户从未签到
|
1.1.自从struts2.13、以后之前的FilterDispatcher标注为过时 1 z- _ w6 Y* `, {/ S6 e
2.<filter-class> $ i; x: C+ g# _$ v( F4 K
3. org.apache.struts.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
h6 w3 c, v" c. v% N4.</filter-class> ( k$ M5 l" U; z' i0 |1 D9 G, x
5.
# N% K3 T" w/ G2 ~) P* [6 `3 S* U6.2.action中默认的method为execute() ( c. n, ~/ b( c
7. 默认class为ActionSupport
" E- h! d! K6 i6 ]8. 默认name 为success; 3 R( K" y# O# ?6 M U; E- ?
9. * R! ?# p0 J, a- q, K1 S' Y
10.3.转发类型 传中文参数URLEncoder.encode("","UTF-8");
$ `1 b+ y2 j8 ^* ]6 _1 y( B11.forward
3 C* S" U4 P2 q9 s& ?9 R12.
$ P0 q1 U7 R3 A13.redirect 浏览器跳转 . z' o, c/ f3 |8 S6 o; g6 P. c; G
14.<result type="redirect">/index.jsp</param>
; T# F( s9 L- O7 e3 T' H# W15. 0 ?% S1 P+ _6 H
16.redirectAction(跳转到另一action) # y2 t8 n. |) Y
17.<result type="redirectAction"> ) L, u; t6 a5 X
18.<param name="actionName">xxx</param> " A* _/ T+ a/ u% x2 H9 q
19.<param name="namespace">/xxx/xxx</param> : Q/ D ?6 [" E0 k4 }6 l/ V5 L/ X' `0 X
20.</result> 5 l% L8 O$ N! J1 b0 h
21.
3 `! w! y: P* ]$ E6 _+ ^9 g$ ^22.plainText(返回jsp页面的源代码) 中文问题
; t2 f g3 e4 d, ?5 O23.<result type="plainText">
8 L( F0 ?9 u V' @7 o ~! D24.<param name="location">index.jsp</param>
( n# F- O& p1 w: H( o# u p25.<param name="charSet">UTF-8</param> " @) o2 D; O @1 Q, ?8 B
26.</result> " a7 |! \- x2 R1 L7 h8 ?
27.
- o2 Z, Y7 p C# h( S4 n28.4.共用
/ ~" W' b$ n% A4 p29.<global-results> ' u$ T0 O# ?$ M5 q* \4 g) s
30. <result name="success">index.jsp</result>
& q% x3 U3 U) B* r31.</global-results> 8 `3 P3 x. i! t$ l) d! U" u' Y
32.
6 E0 l+ v$ u% ?33.5.给action中的参数赋值 : l* W" a0 e( t! t
34.<action ---->
7 F& E; ~0 L% R7 g6 a5 }2 Z5 [35. <param name="param_name">xxx</param>
+ i @, a4 M- W+ {4 D8 w2 c! B& H36. <result>index.jsp</result>
, n$ M( o& _, r% i4 t! k* I& t37.</action>
' ^! Z! y5 R- e( G! j3 y38. 4 b( o6 L$ S1 n6 G' b4 W
39.6.常量标签
0 t/ x% n. {% h& C; ^: s l& b40.<指定截取的后缀 , E9 J5 ?: o. x/ x# u
41.<constant name="struts.action.extension" value="do,action"/> ! \: k8 Y" S L2 s8 R
42.
( s/ \- w$ X2 L" }. f7 b43.指定默认编码集 作用于HttpServletRequest的setCharacterEncoding的方法
z3 n/ ]. h. V8 Z44.<constant name="struts.i18n.encoding" value="UTF-8"/>
/ G" Q: j! V) K; I! |1 k8 [45.
+ F2 O0 u2 \& I8 \+ }+ {46.设置浏览器是否缓存静态页面 默认值为true
' N6 }( r3 Z: f; u, b47.<constant name="struts.serve.static.browserCache" value="true"/> 3 G- c% n7 |) f' f1 L* S
48.
/ K9 ]5 u/ y) A7 o4 Q$ m49.当struts的配置文件被修改后,系统是否自动重新加载文件 默认值为false
9 w' m1 \1 a/ \0 X# s50.<constant name="struts.configuration.xml.reload" value="true"/> 9 z+ i$ c7 Q; A. k& D
51.
7 h! A M3 r8 Z' \/ c8 f* d! ~% P# E52.打印详细错误信息 开发阶段可以打开 c7 s" m* K2 W2 ^
53.<constant name="struts.devMode" value="true"/> 2 X4 \+ |9 H: b! z3 \
54. 5 Y3 C5 N6 e3 e/ t0 v
55.与spring集成时,指定由spring负责的action对象创建
4 C/ h, N8 ~" e) ?2 [) c56.<constant name="struts.objectFactory" value="spring"/>
* a: U( k3 K e$ Z$ W* a+ m. t57. 6 s" \' T: s9 B2 a% T
58.上传文件大小限制 默认大小为10701096
+ D- `+ U$ F; F" I; u( I9 x59.<constant name="struts.multipartmaxSize" value="10701096"/> A$ ~+ K/ `8 E5 [& J& u
60.
; V1 P y6 B* }, _61.struts2加载常量的搜索顺序 + `6 w# Z- J! P/ J K" W# c
62.struts-default.xml->struts-plugin.xml->struts.xml->struts.properties->web.xml
5 x8 h! _! P$ |& [4 ]63.如果在多个配置中定义了同一常量则后一文件中的常量将覆盖前面的常量 3 d$ \* H0 x* Y% ?5 h/ L+ u
64.
. ~* u# p4 ]% H+ G5 ^65.主题 / ?* F$ Y6 h' z) ?0 _& ]
66.<constant name="struts.ui.theme" value="simple"/> 1 T+ r$ G* B' w4 b+ v9 B
67.7.指定调用方法 默认是执行execute
5 ^6 f5 S' k! U1 x0 N" Q, D& y2 L68.动态方法调用:
& E0 ]1 y% f' }* v69.<constant name="struts.enable.DynamicMethodInvocation" value="true"/> / E1 o9 {; c6 r! f: K
70.在访问路径后加!methodname 如/example/list!add.action , b3 b' Z$ G5 b, h x
71.
. l% E& |) v1 f72.也可以用通配符来确认
9 k" s4 Y) ?1 p) [& O, n+ c73.<action name="list_*_*" class="com.ss.action.{1}Action" method="{1}"> , i+ w$ q. A$ c
74. <result name="success">/{2}.jsp</result>
' ]: M) k/ E- D/ s! C: H75.</action> * P C- i% d- q
76. ; F' }& N, }1 }( I. J( h: C, D
77.8.2.1.6版本 接受中文请求参数出现乱版 1 t7 U3 [0 H% v
78.新建一个过滤器filter放到struts2的filter之前,然后在doFilter()方法中添加代码 " b9 b+ Q# N2 r) U3 \% \* P
79.public void doFilter(){ " ]) B0 Q: k8 C% s7 G2 h( g, O
80. HttpServletRequest req=(HttpServletRequest)request; 9 M; R0 p4 G) _- U5 {5 M
81. req.setCharacterEncoding("UTF-8");
3 `9 o" v( m8 x7 X% C2 K9 |# o82. filterchain.doFilter(request,response); 6 V2 a$ k3 z9 j" L5 I) k
83.} - D' A( L' p' t: l/ P/ O) C, U- U% \
84.
) g" ]; k& u) m7 }$ q( j85.9.定义类型转换器 * a2 `1 Q: @ J& x( @
86.一、局部 ! ]* ?: [0 g, y% x; o
87.定义一个类并继承DefaultTypeConverter从写
`) [* j& }/ T88.convertValue(Map<String,Object> context,Object value,Class toType){ % W6 W- r, s+ k% d
89. SimpleDateFormat date=new SimpleDateFormat("yyyymmdd");
# }& c; `* d1 R2 {90.try{
6 ]0 |- Z) j$ M, i91. if(toType==Date.class){
& S! X' X# S! V4 s' y* z92. String[] params=(String[])value; : R' d1 r g8 S9 ]
93. return dateFormat.parse(params[0]); / c& m8 ^7 e4 G+ ~( W
94. }else if(toType==String.class){ - f5 @0 M4 m4 h6 w4 u# |) V
95. Date date=(Date)value;
& N$ [5 f. L1 i) a# B3 B1 C9 Z! B3 }96. return dateFormat.format(date); ! G, C. c8 |9 c2 s& a
97. }
: V& V0 j& |* I; M98. }catch(ParseException e){ 2 }- l- J& e1 h2 G4 w$ @; a& P! A
99. return null; 2 y% _3 Q# {5 t( X' q' A' l
100. } 0 w( f: W# F0 I6 { R) I
101.} : }9 ]" g, n2 l6 W) `, Y0 Z
102.注册:在Action类包下放置<ActionClassName>-conversion.properties文件 4 Y6 Y. g, K0 _! T
103. 属性名=包名.定义的类 $ ~, D, x" o& l# z0 ?
104.二、全局 1 ?2 ^7 v" R+ U
105.在src下(WEB-INF/class/)下 xwork-conversion.properties ( ~/ m7 d# \0 l
106.java.util.Date=包名.类名 3 m4 C' d$ d% h( L
107.
7 O: T) V2 D7 ^108.10.向request、session、application中添加属性
8 @* t$ l2 }# |- l' r" i' A109.ActionContext act=ActionContext.getCOntext();
& ? I: j1 }6 Z110.act.getApplication.put("app","应用范围");
2 B! }8 n2 N/ D6 A* O111.act.getSession.put("ses","session应用范围"); 5 Q/ o) \. X$ b3 m0 y
112.act.put("req","request范围")
9 j1 _! x7 C. @( p" t113.
3 F. X1 ?, Z, }, c& \4 y. |' u4 A# R114.获取原生的请求对象 $ W) M R6 u' z; s6 n- H" _; ~) F
115.HttpServletRequest request=ServletActionContext.getRequest();
8 A9 ^' L$ g, e2 [' [116.ServletContext servlet=ServletActionContext.getServletContext(); & C. [: w# P+ F1 Z8 M
117.servletContext.getRealPath(“”);得到具体文件的绝对路径 8 V' S" i$ ?$ T" Z
118.request.getSession().setArrtibute("session","会话范围"); " E+ U! ?9 Q+ ?: X
119.servletContext.setAttribut("app","应用范围");
+ G# |* U" ?! r2 ?5 [; f5 L1 G! g$ @120.request.setAttribute("req","request范围");
; F' b0 e T! Y6 e; {6 q% T5 _121.页面访问
. P! q5 A) ~, u- C; X% q122.${applicationScope.app}
3 g: n& N' d6 v. L" v123.${sessionScope.ses}
' }+ B) F% }' H% h124.${requestScope.req}
- ^ R% @; g* `2 s: G125. * i7 i* E# S4 Z4 g" ~
126.11.struts2上传文件
( O) x' M8 M7 a5 R127.第一步:放jar包 commond-fileupload-1.21.art和commons-io-1.3.2.jar 4 X' E0 Y' f+ o. _9 I; r4 O4 N
128.第二步:把form表单的enctype设置为:multipart/form-data 如 0 h, J" m+ `4 H/ [/ x( l
129.<form enctype="multipart/form-data" 1 S& x( l. E5 `+ G+ _' K
130. # x% ]5 Y2 ]( ~5 d3 t* j4 N. q' o i0 a
131.action="${pageContext.request.contextPath/list.action}" method="">
8 A) h. l3 v& v9 u+ p1 R n9 v132. <input type="file" name="uploadImage"> 3 ]9 q1 H+ `: _4 L
133. <input type="submit" value="upload"/> + u3 R% F4 d$ h, D! O/ x2 d: ?
134.</form>
% T1 l" F5 J G& ?135.第三步:在action中添加以下属性 命名规则 与file的name相同
$ ~. F0 t" s; Y5 S1 V" G136.private File uploadImage;//得到上传文件 8 w" e% ]- e% d- m7 H# ^
137.private String uploadImageContentType;//得到上传文件的类型
+ ^# K* N2 m5 }, c a138.private String uploadImageFileName;//得到上传文件的名称
$ e' C9 [4 `5 E* P; @2 f139.
( V. R# p6 _% T) e' E% v; a140.String realPath=ServletActionContext.getServletContext().getRealPath : U% f$ W7 M4 \9 r2 ?# [7 `! W
141. 8 |( k8 I; L3 l0 o9 r' t& ^5 _$ B" I
142.("/images"); ; }: \# y7 w1 @( L0 Y. ^
143.File saveFile=new File(new File(realPath),uploadImageFileName);
7 s; V) y" Q/ c0 g; B144.if(!savefile.getParentFile().exists()) 8 d7 d9 O! u7 ~" s
145. saveFile.getParentFile().mkdirs();
3 X- b5 [5 f1 z5 g146.FileUtils.copyFile(uploadImage,saveFile); 4 q) b1 L- e+ o* y
147. ) c+ w+ ^! e7 k f) ?; \5 g
148.12.多文件上传
9 u: h1 p' R2 F149. 7 Z$ O& J- O5 n( Z
150.将属性类型定义成数组活list类型
1 d/ N& S/ B9 R0 e5 b( {& [3 [151.private File[] uploadImage;
1 Q) z: n% J- y/ o5 L: j152.private String[] uploadImageContentType;
# \& f; _+ E" N& ?- ?& Z( k153.private String[] uploadImageFileName;
; S/ w! p$ m% a154. 8 j% C" M5 P7 J* q3 m
155.String realPath=ServletActionContext.getServletContext().getRealPath ( b9 `1 d" m- L
156.
( Q% q( f% ~: y5 m157.("/images"); ; G# P8 G5 V6 n+ i
158.if(uploadImage!=null){ & y/ b- ]) Y. m
159.File savedir=new File(new File(realPath));
, L" l. L5 d' O* X160.if(!savedir.exists()) 0 n9 X& Y5 Y! E, M9 C& _! h% V4 R
161. savedir.mkdirs(); & ?% V5 T$ u( w2 o
162.for(int index=0;index<uploadImage.length,index++){ ( M- c7 |+ p8 u, x1 K: C/ r8 o
163. File saveFile=new File(savedir,uploadImageFileName[index]); a6 ~( i- L8 G7 X. B- j- e
164. if(!saveFile.getParentFile().exists()) ) _( U9 B' Y. ?8 h4 S
165. saveFile.getParentFile().mkdirs();
( S" B2 ^2 w' d/ Y2 r- U. A8 M7 p# j166. FileUtils.copyFile(uploadImage[index],saveFile);
2 [2 m: l: P+ y& a' M167.}
# d5 f9 n2 g$ H: o" |. B2 z168. `) T# Y4 h, q2 T$ E
169.} / J o. A4 @6 l, N* U7 \3 W
170.13.自定义拦截器
0 B3 n0 ^- _. E% b8 F1 O! |5 s171.一:类实现Interceptor接口 ; H6 t! P5 Y. a6 f' n% @( s
172.在intercept方法中进行操作,invocation.invoke();继续执行该方法
5 n1 B9 ? T& u3 D173.二:注册拦截器 / e7 B4 k+ y! t
174.在sturts配置中定义: $ F* c: I; F: ?4 p' R/ Y
175.<interceptors> ; m$ c$ ~ O+ N. v
176. <interceptor name="自定义拦截器名" class="类"/>
* B/ `9 `+ D$ n7 |% h177. <interceptor-stack name="栈名">
* X6 h* x8 K% p% `9 s5 O178. <interceptor-ref name="defaultStack"/>引用原来的拦截器 2 z! f V) s; C, _) |$ [0 F
179. <interceptor-ref name="自定义拦截器名"/>
* X3 o7 V ^5 A3 ^! V180. </interceptor-stack> " Q1 m, n- g; N# G+ l3 n2 k. W# l
181.</interceptors>
' f/ U4 F$ ~, T z9 l! [182.<action name="xxx" class="xxxx"> ; P! {! P5 a9 l6 K: J$ B+ F9 l
183. <interceptor-ref name="栈名"> * ~5 e3 @; m) {
184.</action> ; Q0 E0 F+ @; G1 c/ s" m
185. . b3 z O/ b5 b8 j$ q
186.定义一个包下的所有action都使用此拦截器 3 s+ ?! K5 L. R% j
187.<default-interceptor-ref name="栈名"/>
9 I1 z! e1 k- i C+ ?7 s+ K8 ~188.
4 ?7 O/ w/ _8 N/ o6 B3 z189.14.struts2的校验
7 W) ]5 u9 m5 L- ]" B# u. A4 A# L190.第一:手工代码校验
# R5 k( R. j; H! G3 K191.一:所有方法校验
: q+ P/ X$ H( p5 n ?6 h& \192. 1、类继承ActionSupport 再从写validate方法 $ T- E/ S+ t' m
193. 2、在validate中写入自己的验证需要 ( G* w1 s2 P: K, t v$ p, [" J
194. 3、此方法this.addFieldError("username","用户名不能为空!");用于放置错误信息
/ W5 Q9 W5 Q# d6 ^, e0 \195.
3 }! I1 f0 j" m5 n y196.,正则表达式的验证:
4 D7 a& s: d1 c9 I197.Pattern.compile(regex).matcher(this.mobile).matches();regex以^开始以$结尾 g9 T7 k* K1 B; l9 `$ p
198.
6 t! Z* T# E1 p) n) h199.fieldError包含错误信息则返回input <s:fielderror/>显示错误信息
& A3 B1 ~- ], u% j, D' x6 I200.二:指定方法校验 + ~4 N7 M8 j$ W1 y' ^- w
交时返回视图 4 F9 m+ D w: t4 i# m1 p" d5 X
! z* E6 T; i8 p% A# g8 S; h% C |
|