-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspringboot
51 lines (46 loc) · 1.95 KB
/
springboot
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
mybatisConfig:
@Bean
public SqlSessionFactory sqlSessionFactoryBean(DataSource dataSource) throws Exception {
SqlSessionFactoryBean factory = new SqlSessionFactoryBean();
factory.setDataSource(dataSource);
factory.setTypeAliasesPackage(MODEL_PACKAGE);
//添加XML目录
ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
factory.setMapperLocations(resolver.getResources("classpath:mapper/*.xml"));
return factory.getObject();
}
@Bean
public MapperScannerConfigurer mapperScannerConfigurer() {
MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer();
mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactoryBean");
mapperScannerConfigurer.setBasePackage("com.test.dao");
//配置通用Mapper,详情请查阅官方文档
Properties properties = new Properties();
// properties.setProperty("mappers", "com.test.core.mapper");
properties.setProperty("notEmpty", "false");
properties.setProperty("IDENTITY", "MYSQL");
mapperScannerConfigurer.setProperties(properties);
return mapperScannerConfigurer;
}
//屏蔽安全检查默认login 用户名:user 密码是启动时控制台打印的字符串
@EnableAutoConfiguration(exclude = {SecurityAutoConfiguration.class})
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
class Application{}
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/**").permitAll();
}
}
/**
*支持https
*/
生成keystore
application.properties
server.port=8443
server.ssl.key-store=src/main/resources/logabc.keystore
#server.ssl.key-store=classpath:logabc.keystore
#密钥库密码
server.ssl.key-store-password=mi**pwd2
server.ssl.key-password:mi**pwd
server.ssl.keyStoreType=JKS