TA的每日心情 | 衰 2021-2-2 11:21 |
---|
签到天数: 36 天 [LV.5]常住居民I
|
大家都知道springMvc 都有注解配置 实现请求方式比如:6 w3 p. m5 q K, H# l; c4 P- J/ T
@RequestMapping(value = "/index", method = RequestMethod.GET)
9 Y1 r3 V, O+ p! p这样的话 用户只能发送get请求。
! K4 W$ X& l9 z0 y2 b但是struts2 大多是基于配置实现的、注解的方式用的很少、下面通过struts2实现Http只允许POST请求。
+ X: H1 X. F" ]
, @+ B0 t W; O' r注解 RequestTypeAnnotation:- @Target({ElementType.PARAMETER, ElementType.METHOD}) : {+ c: h. [) p- F1 u: Y4 |' b3 K4 T
- @Retention(RetentionPolicy.RUNTIME) 6 v* d4 v+ g6 a x0 b
- @Documented
& t' a# W- z+ V- \5 y; r# b8 K - public @interface RequestTypeAnnotation {
& l6 U2 z& X9 @; v. x: U - RequestType value();
+ N& \% |1 [+ Z1 N h" S - public enum RequestType {$ c" @9 R, S/ m$ J8 p
- /**
; l$ x1 i& ]5 y* R$ d! A - * post方式的http请求% L$ @# C# Y# {! c8 ~0 _
- */
" v: | Z+ Q/ N& K - POST,- M1 I J% B$ v7 b( @" z7 b2 ?) W& y
- /**% U! I& [# S( a! w7 K& q, Q
- * get方式的http请求
J1 o1 Q9 k0 U: y: O! z1 F - */
$ c* X8 | h0 M/ q( t& e - GET6 G, l2 J: d1 O/ h
- }( a3 f1 F1 Y: M5 A; x5 H4 B0 D
- }
复制代码 拦截器 RequestTypeInterceptor:- /**
4 ^. T5 d& W5 n. _# j' I - * 拦截器$ m" N( ^) I% m: H: m+ P' D
- * 创建者 张志朋
- \* Z1 x6 x* O - * 创建时间 2016年1月5日& f4 a7 a% F$ v7 M" f
- *
. o# I! }# ~0 Q- {2 `3 j4 ?4 ` - */
) W& T0 _/ V# U) P1 F P - public class RequestTypeInterceptor extends AbstractInterceptor {% l H& f0 N: Y) d
- private static final long serialVersionUID = -4204585527913002611L;
. Z% R7 O0 [; z3 R - : @ b3 I( ^6 v& I: m$ H& w
- public String intercept(ActionInvocation invocation) throws Exception {; W0 T- t, j& e# u& a, B) d
- 4 R' J$ m* b1 ?* B7 i! I
- Action action = (Action) invocation.getAction();- ?3 e, F" ?- N& o: U+ V" B# \( n
- try {' l C U7 j$ E3 _8 o
- Method method = action.getClass().getMethod(invocation.getProxy().getMethod(), new Class[] {});; {/ d% d- Y, A3 p* j( x
- Annotation[] annotations = method.getAnnotations();$ z7 u. C0 w9 |& Y; |4 `
- String methodName = ServletActionContext.getRequest().getMethod();% |4 |, ~- v, @- l& z# @, `% w6 c( [
- for (Annotation annotation : annotations) {4 A, _5 W V0 s% @/ G# Z6 V
- if (annotation instanceof RequestTypeAnnotation) {, {+ K" A. f/ H
- RequestTypeAnnotation reqTypeAnnotation = (RequestTypeAnnotation) annotation;
8 \! H) Z/ K" M) z - if (!reqTypeAnnotation.value().name().equalsIgnoreCase(methodName)) {
+ g/ ^% h A' n4 u4 h# {& H$ O- z - return "input";: h( z5 V: {0 ~; T0 d- d
- }! y5 \7 t' E( s9 V6 `0 x
- }5 w$ I! R4 j+ x# d# k$ {2 `" l5 S- |
- }
* [1 f8 ^4 @6 @) L4 f - } catch (Exception e) {
% f8 p3 ^0 M: H* R) ? - return "error";, [4 H G1 K5 e8 i" R) u/ v
- }. ~+ Z3 V" H- ~! |+ o) B! O
- return invocation.invoke();; c! W; v. Y' z) j8 u2 t4 c, ^
- }( h% z% I3 l4 T8 H' S# `
- }
复制代码 请求 WelcomeAction:& @3 f, A8 _* V/ F+ a0 x1 D
- /**1 X5 u k- O& |" ^9 @
- * 测试action
9 O! G" U6 l: |1 ` - * 创建者 张志朋
6 ~1 A& m/ p @& Y* _ - * 创建时间 2016年1月5日5 a: X! y5 h) `8 N
- *
! W1 s' R0 ]6 ~/ g/ W2 S - */4 w- S; \& }$ V" ]4 N* g( h
- public class WelcomeAction extends ActionSupport {& q* i7 g$ z1 E7 u2 c
- private static final long serialVersionUID = 752609025281512627L;# [" R2 b* |$ M% ~* o
- private String message;
. T. `, J' ]9 ~* Q7 Z - @RequestTypeAnnotation(RequestType.POST)1 E1 \ e" X; j8 B C& z6 u
- public String execute(){, K, {* p1 m0 h, y4 Z
- message = "只接受post请求";
7 P# Z: ]" H+ r0 [$ Y - return SUCCESS;
1 O' C: i: k e4 m3 D - }
, i c5 t4 |% S9 @! t" r( f - /**; I. H7 d0 E: h( f# @2 }
- * @return the message
7 B/ B& {+ _9 p# w9 g" k7 p* W - */2 y+ T# {6 t/ C; O
- public String getMessage() {
2 m0 k) B" e7 Q - return message;2 W( N, i5 B# n0 B/ E0 E$ C
- }
) @3 @/ D- T% u: j& s - /**
) G6 |) K7 v4 R- Q( k - * @param message the message to set
4 O. [9 [. b2 y! Z% o# d8 ? - */
, X( x9 k& j4 C. h$ _2 L - public void setMessage(String message) {
6 S2 y( ^. k0 |2 o4 q' l - this.message = message;
6 N/ m; r) h! |, U% k& B5 w# K s! R - }
k5 H6 z/ i- F) h - }
复制代码 : W; o) G4 J% v/ h1 o' h
struts.xml配置:- <struts>
% f# z0 d/ i! L - <constant name="struts.devMode" value="false" />. W0 m6 h3 p% I$ o' V9 p. |
- <constant name="struts.i18n.encoding" value="UTF-8" />8 w& J2 U4 H9 x: s1 x6 h& s+ v# z
- <constant name="struts.action.extension" value="action"></constant>
! \: |4 ?) O) L - <package name="web01" extends="json-default">
% [3 i8 t: |# m+ V$ N/ M - <interceptors>
' W! Y0 t$ H" g1 T - <interceptor name="requestType" class="itstyle.interceptor.RequestTypeInterceptor"></interceptor> , V0 F& g D' @ M4 N
- </interceptors>
, r1 ~. }! u1 t - <action name="welcome" class="itstyle.action.WelcomeAction">7 ?. s5 S, ?3 I0 {& {% i2 |) P
- <result name="success" type="json">/ G8 f# }7 X7 P' d7 q/ _$ M6 [
- <param name="root">message</param>
# L+ J7 ?% F( t. N# B& W+ \9 @ - </result>
: ]+ E5 ]: u, ]; Z: T" O& ? - <result name="input">/error.jsp</result>" }6 ]5 D) n; q" p+ U. @9 K
- <interceptor-ref name="defaultStack"></interceptor-ref>
* j4 O3 Y, o: |" J4 D - <interceptor-ref name="requestType"></interceptor-ref> 4 A7 {; z2 I; I7 P( l1 a4 e
- </action>
& L- d0 Z: V! B v6 x( S1 \% C2 i( [ - </package>7 i% ]$ o& n7 N$ M Q
- </struts>
复制代码
; T! f6 C, u, Z+ D( O/ u项目源码下载地址: 注解实现struts2 action 只接受post请求. c9 c+ v! V$ p1 m/ v
) d/ H6 _: E4 j6 h$ t6 a0 s
提取码:
/ ]4 n- x k: E6 k0 J4 W3 s) _+ n% o3 r) X
/ P4 O2 S; y; g0 z) c
|
|