-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathDemoAppConfig.java
More file actions
executable file
·155 lines (120 loc) · 4.7 KB
/
DemoAppConfig.java
File metadata and controls
executable file
·155 lines (120 loc) · 4.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.*/
package apijson.jfinal;
import java.util.Map;
import java.util.regex.Pattern;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.jfinal.aop.Interceptor;
import com.jfinal.aop.Invocation;
import com.jfinal.config.Constants;
import com.jfinal.config.Handlers;
import com.jfinal.config.Interceptors;
import com.jfinal.config.JFinalConfig;
import com.jfinal.config.Plugins;
import com.jfinal.config.Routes;
import com.jfinal.core.Controller;
import com.jfinal.server.undertow.UndertowServer;
import com.jfinal.template.Engine;
import apijson.Log;
import apijson.StringUtil;
import apijson.demo.DemoFunctionParser;
import apijson.demo.DemoParser;
import apijson.demo.DemoSQLConfig;
import apijson.demo.DemoSQLExecutor;
import apijson.demo.DemoVerifier;
import apijson.framework.APIJSONApplication;
import apijson.framework.APIJSONCreator;
import apijson.orm.FunctionParser;
import apijson.orm.Parser;
import apijson.orm.SQLConfig;
import apijson.orm.SQLExecutor;
import apijson.orm.Structure;
import apijson.orm.Verifier;
/**JFinalConfig
* 右键这个类 > Run As > Java Application
* @author Lemon
*/
public class DemoAppConfig extends JFinalConfig {
static {
// APIJSON 配置 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Map<String, Pattern> COMPILE_MAP = Structure.COMPILE_MAP;
COMPILE_MAP.put("PHONE", StringUtil.PATTERN_PHONE);
COMPILE_MAP.put("EMAIL", StringUtil.PATTERN_EMAIL);
COMPILE_MAP.put("ID_CARD", StringUtil.PATTERN_ID_CARD);
// 使用本项目的自定义处理类
APIJSONApplication.DEFAULT_APIJSON_CREATOR = new APIJSONCreator() {
@Override
public Parser<Long> createParser() {
return new DemoParser();
}
@Override
public FunctionParser createFunctionParser() {
return new DemoFunctionParser();
}
@Override
public Verifier<Long> createVerifier() {
return new DemoVerifier();
}
@Override
public SQLConfig createSQLConfig() {
return new DemoSQLConfig();
}
@Override
public SQLExecutor createSQLExecutor() {
return new DemoSQLExecutor();
}
};
// APIJSON 配置 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
}
public static void main(String[] args) throws Exception {
UndertowServer.start(DemoAppConfig.class);
Log.DEBUG = true; // 上线生产环境前改为 false,可不输出 APIJSONORM 的日志 以及 SQLException 的原始(敏感)信息
APIJSONApplication.init();
}
// 支持 APIAuto 中 JavaScript 代码跨域请求 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
public void configRoute(Routes me) {
me.add("/", DemoController.class);
}
public void configEngine(Engine me) {
me.setBaseTemplatePath("webapp").setToClassPathSourceFactory();
}
public void configConstant(Constants me) {}
public void configPlugin(Plugins me) {}
public void configHandler(Handlers me) {}
public void configInterceptor(Interceptors me) {
me.add(new Interceptor() {
@Override
public void intercept(Invocation inv) {
Controller controller = inv.getController();
HttpServletRequest request = controller == null ? null : controller.getRequest();
if (request == null) {
return;
}
String origin = request.getHeader("origin");
String corsHeaders = request.getHeader("access-control-request-headers");
String corsMethod = request.getHeader("access-control-request-method");
HttpServletResponse response = controller.getResponse();
response.setHeader("Access-Control-Allow-Origin", StringUtil.isEmpty(origin, true) ? "*" : origin);
response.setHeader("Access-Control-Allow-Credentials", "true");
response.setHeader("Access-Control-Allow-Headers", StringUtil.isEmpty(corsHeaders, true) ? "*" : corsHeaders);
response.setHeader("Access-Control-Allow-Methods", StringUtil.isEmpty(corsMethod, true) ? "*" : corsMethod);
response.setHeader("Access-Control-Max-Age", "86400");
if("OPTIONS".equals(request.getMethod().toUpperCase())){
controller.renderJson("{}");
return;
}
inv.invoke();
}
});
}
// 支持 APIAuto 中 JavaScript 代码跨域请求 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
}