10
10
import java .lang .reflect .InvocationTargetException ;
11
11
import java .lang .reflect .Method ;
12
12
import java .lang .reflect .Parameter ;
13
+ import java .util .ArrayList ;
13
14
import java .util .Set ;
14
15
import java .util .logging .Level ;
15
16
import java .util .logging .Logger ;
31
32
*/
32
33
@ WebServlet (name = "DispatchServlet" , urlPatterns = {"/" })
33
34
public class DispatchServlet extends HttpServlet {
34
-
35
+
35
36
private Reflections f ;
36
-
37
+
37
38
@ Override
38
39
public void init () throws ServletException {
39
- ViewEngine .load (this .getServletContext ());
40
+ // ViewEngine.load(this.getServletContext());
40
41
f = App .f ;
41
-
42
+
42
43
}
43
-
44
+
44
45
@ Override
45
46
protected void doGet (HttpServletRequest req , HttpServletResponse resp )
46
47
throws ServletException , IOException {
@@ -50,7 +51,7 @@ protected void doGet(HttpServletRequest req, HttpServletResponse resp)
50
51
Logger .getLogger (DispatchServlet .class .getName ()).log (Level .SEVERE , null , ex );
51
52
}
52
53
}
53
-
54
+
54
55
@ Override
55
56
protected void doPost (HttpServletRequest req , HttpServletResponse resp )
56
57
throws ServletException , IOException {
@@ -59,9 +60,9 @@ protected void doPost(HttpServletRequest req, HttpServletResponse resp)
59
60
} catch (NullRouteException ex ) {
60
61
Logger .getLogger (DispatchServlet .class .getName ()).log (Level .SEVERE , null , ex );
61
62
}
62
-
63
+
63
64
}
64
-
65
+
65
66
private void process (HttpServletRequest req , HttpServletResponse resp , RequestMethod requestMethod )
66
67
throws NullRouteException , IOException {
67
68
resp .setContentType ("text/html" );
@@ -70,14 +71,20 @@ private void process(HttpServletRequest req, HttpServletResponse resp, RequestMe
70
71
Object res = null ;
71
72
try {
72
73
Method invokeMethod = this .getMaps (path , requestMethod );
74
+ Object [] arguments = new Object [0 ];
73
75
switch (requestMethod ) {
74
76
case GET :
75
- res = getDispatch (req , resp , invokeMethod );
77
+ arguments = getDispatch (req , resp , invokeMethod );
76
78
break ;
77
79
case POST :
78
- res = postDispatch (req , resp , invokeMethod );
80
+ arguments = postDispatch (req , resp , invokeMethod );
79
81
break ;
80
82
}
83
+ Object obj ;
84
+ obj = invokeMethod .getDeclaringClass ().getDeclaredConstructor ().newInstance ();
85
+ res = invokeMethod .invoke (obj , arguments );
86
+ } catch (InvocationTargetException e ) {
87
+ Log .error ("发生错误" , e .getCause ());
81
88
} catch (NullRouteException ex ) {
82
89
res = "404 Not Found" ;
83
90
} catch (Exception e ) {
@@ -87,10 +94,8 @@ private void process(HttpServletRequest req, HttpServletResponse resp, RequestMe
87
94
resp .getWriter ().write (responseBody );
88
95
resp .getWriter ().flush ();
89
96
}
90
-
91
- private Object getDispatch (HttpServletRequest request , HttpServletResponse response , Method invokeMethod ) {
92
-
93
- Object res = null ;
97
+
98
+ private Object [] getDispatch (HttpServletRequest request , HttpServletResponse response , Method invokeMethod ) {
94
99
Parameter [] parameters = invokeMethod .getParameters ();
95
100
Object [] arguments = new Object [parameters .length ];
96
101
for (int i = 0 ; i < parameters .length ; i ++) {
@@ -116,21 +121,11 @@ private Object getDispatch(HttpServletRequest request, HttpServletResponse respo
116
121
throw new RuntimeException ("Missing handler for type: " + parameterClass );
117
122
}
118
123
}
119
- Object obj ;
120
- try {
121
- obj = invokeMethod .getDeclaringClass ().getDeclaredConstructor ().newInstance ();
122
- res = invokeMethod .invoke (obj , arguments );
123
- } catch (Exception e ) {
124
- InvocationTargetException targetEx = (InvocationTargetException ) e ;
125
- Throwable trowEx = targetEx .getTargetException ();
126
- Log .error ("方法invoke失败" , trowEx );
127
- }
128
- return res ;
124
+ return arguments ;
129
125
}
130
-
131
- private Object postDispatch (HttpServletRequest request , HttpServletResponse response , Method invokeMethod )
126
+
127
+ private Object [] postDispatch (HttpServletRequest request , HttpServletResponse response , Method invokeMethod )
132
128
throws IOException {
133
- Object res = null ;
134
129
Parameter [] parameters = invokeMethod .getParameters ();
135
130
Object [] arguments = new Object [parameters .length ];
136
131
for (int i = 0 ; i < parameters .length ; i ++) {
@@ -151,17 +146,9 @@ private Object postDispatch(HttpServletRequest request, HttpServletResponse resp
151
146
arguments [i ] = gson .fromJson (reader , parameterClass );
152
147
}
153
148
}
154
- Object obj ;
155
- try {
156
- obj = invokeMethod .getDeclaringClass ().getDeclaredConstructor ().newInstance ();
157
- res = invokeMethod .invoke (obj , arguments );
158
- } catch (Exception e ) {
159
- Log .error ("方法invoke失败" , e );
160
- }
161
- return res ;
162
-
149
+ return arguments ;
163
150
}
164
-
151
+
165
152
private String getOrDefault (HttpServletRequest request , String name , String defaultValue ) {
166
153
String s = request .getParameter (name );
167
154
return s == null ? defaultValue : s ;
@@ -181,9 +168,9 @@ private String handInvokeRes(Object obj) {
181
168
String jsonRes = gson .toJson (obj );
182
169
return jsonRes ;
183
170
}
184
-
171
+
185
172
private Method getMaps (String path , RequestMethod requestMethod ) throws NullRouteException {
186
-
173
+
187
174
if (requestMethod == RequestMethod .GET ) {
188
175
Set <Method > resources = f .getMethodsAnnotatedWith (GetMapping .class );
189
176
for (Method method : resources ) {
@@ -202,7 +189,7 @@ private Method getMaps(String path, RequestMethod requestMethod) throws NullRout
202
189
}
203
190
}
204
191
}
205
-
192
+
206
193
throw new NullRouteException ();
207
194
}
208
195
}
0 commit comments