-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathDemoApplication.java
More file actions
executable file
·147 lines (122 loc) · 4.78 KB
/
DemoApplication.java
File metadata and controls
executable file
·147 lines (122 loc) · 4.78 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
/*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.boot;
import java.util.Map;
import java.util.regex.Pattern;
import org.springframework.beans.BeansException;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;
import apijson.Log;
import apijson.StringUtil;
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;
/**SpringBootApplication
* 右键这个类 > Run As > Java Application
* @author Lemon
*/
@Configuration
@SpringBootApplication
public class DemoApplication implements ApplicationContextAware {
static {
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();
}
};
}
public static void main(String[] args) throws Exception {
SpringApplication.run(DemoApplication.class, args);
Log.DEBUG = true; //上线生产环境前改为 false,可不输出 APIJSONORM 的日志 以及 SQLException 的原始(敏感)信息
APIJSONApplication.init(true);
}
private static ApplicationContext APPLICATION_CONTEXT;
public static ApplicationContext getApplicationContext() {
return APPLICATION_CONTEXT;
}
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
APPLICATION_CONTEXT = applicationContext;
}
//SpringBoot 2.x 自定义端口方式
// @Bean
// public TomcatServletWebServerFactory servletContainer(){
// return new TomcatServletWebServerFactory(8081) ;
// }
//SpringBoot 1.x 自定义端口方式,配置文件加 server.port=80 无效(MacOS 10.10.?)
@Bean
public EmbeddedServletContainerCustomizer containerCustomizer() {
return new EmbeddedServletContainerCustomizer() {
@Override
public void customize(ConfigurableEmbeddedServletContainer container) {
container.setPort(8080); //自定义端口号,如果和 TiDB 等其它程序端口有冲突,可改为 8081, 9090, 9091 等未被占用的端口
}
};
}
//支持JavaScript跨域请求<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
/**
* 跨域过滤器
* @return
*/
@Bean
public CorsFilter corsFilter() {
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
source.registerCorsConfiguration("/**", buildConfig());
return new CorsFilter(source);
}
/**CORS跨域配置
* @return
*/
private CorsConfiguration buildConfig() {
CorsConfiguration corsConfiguration = new CorsConfiguration();
corsConfiguration.addAllowedOrigin("*"); //允许的域名或IP地址
corsConfiguration.addAllowedHeader("*"); //允许的请求头
corsConfiguration.addAllowedMethod("*"); //允许的HTTP请求方法
corsConfiguration.setAllowCredentials(true); //允许发送跨域凭据,前端Axios存取JSESSIONID必须要
return corsConfiguration;
}
//支持JavaScript跨域请求 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
}