Files

58 lines
1.7 KiB
Java
Raw Normal View History

/**
* Copyright (C) 2018-2020
* All rights reserved, Designed By www.yixiang.co
*/
package co.yixiang;
2020-05-26 22:27:01 +08:00
import co.yixiang.annotation.AnonymousAccess;
2019-11-06 21:34:55 +08:00
import co.yixiang.utils.SpringContextHolder;
import org.mybatis.spring.annotation.MapperScan;
2019-11-06 21:34:55 +08:00
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
2019-11-06 21:34:55 +08:00
import org.springframework.context.annotation.Bean;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
2019-11-06 21:34:55 +08:00
/**
* @author hupeng
2019-11-06 21:34:55 +08:00
* @date 2018/11/15 9:20:19
*/
@EnableAsync
@RestController
2019-11-06 21:34:55 +08:00
@SpringBootApplication
@EnableTransactionManagement
@MapperScan(basePackages ={ "co.yixiang.*.mapper", "co.yixiang.config"})
2019-11-06 21:34:55 +08:00
public class AppRun {
public static void main(String[] args) {
SpringApplication.run(AppRun.class, args);
}
@Bean
public SpringContextHolder springContextHolder() {
return new SpringContextHolder();
}
@Bean
public ServletWebServerFactory webServerFactory() {
TomcatServletWebServerFactory fa = new TomcatServletWebServerFactory();
fa.addConnectorCustomizers(connector -> connector.setProperty("relaxedQueryChars", "[]{}"));
return fa;
}
/**
* 访问首页提示
* @return /
*/
@GetMapping("/")
@AnonymousAccess
public String index() {
return "Backend service started successfully";
}
2019-11-06 21:34:55 +08:00
}