Here are the examples of the java api @org.springframework.boot.autoconfigure.SpringBootApplication taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
9475 Examples
19
View Source File : I18nApplication.java
License : MIT License
Project Creator : zzzzbw
License : MIT License
Project Creator : zzzzbw
@SpringBootApplication
@Configuration
public clreplaced I18nApplication {
public static void main(String[] args) {
SpringApplication.run(I18nApplication.clreplaced, args);
}
@Bean
public LocaleResolver localeResolver() {
CookieLocaleResolver slr = new CookieLocaleResolver();
slr.setDefaultLocale(Locale.CHINA);
slr.setCookieMaxAge(3600);
slr.setCookieName("Language");
return slr;
}
@Bean
public WebMvcConfigurer webMvcConfigurer() {
return new WebMvcConfigurer() {
// 拦截器
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LocaleChangeInterceptor()).addPathPatterns("/**");
registry.addInterceptor(new MessageResourceInterceptor()).addPathPatterns("/**");
}
};
}
}
19
View Source File : Application.java
License : MIT License
Project Creator : zzzzbw
License : MIT License
Project Creator : zzzzbw
/**
* Spring boot
*
* @author zbw
* @since 2017/7/5.
*/
@SpringBootApplication
@EnableAsync
@EnableCaching
@EnableTransactionManagement
public clreplaced Application {
public static void main(String[] args) {
SpringApplication.run(Application.clreplaced, args);
}
}
19
View Source File : ApiApplication.java
License : GNU Affero General Public License v3.0
Project Creator : zycSummer
License : GNU Affero General Public License v3.0
Project Creator : zycSummer
/**
* @author lgh
*/
@SpringBootApplication
@ComponentScan(basePackages = { "com.yami.shop" })
public clreplaced ApiApplication extends SpringBootServletInitializer {
public static void main(String[] args) {
SpringApplication.run(ApiApplication.clreplaced, args);
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
return builder.sources(ApiApplication.clreplaced);
}
}
19
View Source File : MonitorServerApplication.java
License : Apache License 2.0
Project Creator : zuihou
License : Apache License 2.0
Project Creator : zuihou
/**
* @author zuihou
* @date 2018-01-14 11:11
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableAdminServer
@ComponentScan({ "com.tangyh.lamp", "com.tangyh.basic" })
public clreplaced MonitorServerApplication {
public static void main(String[] args) {
SpringApplication.run(MonitorServerApplication.clreplaced, args);
}
}
19
View Source File : GatewayServerApplication.java
License : Apache License 2.0
Project Creator : zuihou
License : Apache License 2.0
Project Creator : zuihou
/**
* @author zuihou
* @date 2017-12-13 15:02
*/
@SpringBootApplication
@EnableDiscoveryClient
@ComponentScan({ UTIL_PACKAGE, BUSINESS_PACKAGE })
@EnableFeignClients(value = { UTIL_PACKAGE, BUSINESS_PACKAGE })
@Slf4j
public clreplaced GatewayServerApplication {
public static void main(String[] args) throws UnknownHostException {
ConfigurableApplicationContext application = SpringApplication.run(GatewayServerApplication.clreplaced, args);
Environment env = application.getEnvironment();
log.info("\n----------------------------------------------------------\n\t" + "应用 '{}' 运行成功! 访问连接:\n\t" + "Swagger文档: \t\thttp://{}:{}{}{}/doc.html\n\t" + "----------------------------------------------------------", env.getProperty("spring.application.name"), InetAddress.getLocalHost().getHostAddress(), env.getProperty("server.port", "8080"), env.getProperty("server.servlet.context-path", ""), env.getProperty("spring.mvc.servlet.path", ""));
}
}
19
View Source File : SpringBootApp.java
License : Apache License 2.0
Project Creator : Zuehlke
License : Apache License 2.0
Project Creator : Zuehlke
@SpringBootApplication
public clreplaced SpringBootApp {
public static void main(String[] args) {
SpringApplication.run(SpringBootApp.clreplaced, args);
}
}
19
View Source File : ShiroSpringBootStarterApplication.java
License : Apache License 2.0
Project Creator : ztgreat
License : Apache License 2.0
Project Creator : ztgreat
@SpringBootApplication
public clreplaced ShiroSpringBootStarterApplication {
public static void main(String[] args) {
SpringApplication.run(ShiroSpringBootStarterApplication.clreplaced, args);
}
}
19
View Source File : DemoApplication.java
License : Apache License 2.0
Project Creator : ztgreat
License : Apache License 2.0
Project Creator : ztgreat
@SpringBootApplication
public clreplaced DemoApplication {
public static void main(String[] args) {
Clreplaced[] clreplacedes = new Clreplaced[2];
clreplacedes[0] = ShiroSpringBootStarterApplication.clreplaced;
clreplacedes[1] = DemoApplication.clreplaced;
SpringApplication.run(clreplacedes, args);
}
}
19
View Source File : SpringsecurityAuthApplication.java
License : Apache License 2.0
Project Creator : ztgreat
License : Apache License 2.0
Project Creator : ztgreat
@SpringBootApplication
public clreplaced SpringsecurityAuthApplication {
public static void main(String[] args) {
SpringApplication.run(SpringsecurityAuthApplication.clreplaced, args);
}
}
19
View Source File : DemoApplication.java
License : Apache License 2.0
Project Creator : ztgreat
License : Apache License 2.0
Project Creator : ztgreat
@SpringBootApplication
public clreplaced DemoApplication {
public static void main(String[] args) {
Clreplaced[] clreplacedes = new Clreplaced[2];
clreplacedes[0] = SpringsecurityAuthApplication.clreplaced;
clreplacedes[1] = DemoApplication.clreplaced;
SpringApplication.run(clreplacedes, args);
}
}
19
View Source File : SampleApplication.java
License : Apache License 2.0
Project Creator : zrbcool
License : Apache License 2.0
Project Creator : zrbcool
/**
* Description:
*
* @author zhiminxu
* @version 2019-08-13
*/
@SpringBootApplication
public clreplaced SampleApplication {
public static void main(String[] args) {
SpringApplication.run(SampleApplication.clreplaced, args);
}
}
19
View Source File : SampleRMQApplication.java
License : Apache License 2.0
Project Creator : zrbcool
License : Apache License 2.0
Project Creator : zrbcool
/**
* @author [email protected]
* @version 20-1-2
*/
@SpringBootApplication
public clreplaced SampleRMQApplication {
public static void main(String[] args) {
SpringApplication.run(SampleRMQApplication.clreplaced, args);
}
}
19
View Source File : SampleXmlApplication.java
License : Apache License 2.0
Project Creator : zrbcool
License : Apache License 2.0
Project Creator : zrbcool
@SpringBootApplication
public clreplaced SampleXmlApplication {
public static void main(String[] args) {
SpringApplication.run(SampleXmlApplication.clreplaced, args);
}
}
19
View Source File : MotanServerApplication.java
License : Apache License 2.0
Project Creator : zrbcool
License : Apache License 2.0
Project Creator : zrbcool
/**
* Description:
*
* @author zhiminxu
* @version 2019-08-14
*/
@SpringBootApplication
public clreplaced MotanServerApplication {
public static void main(String[] args) {
SpringApplication.run(MotanServerApplication.clreplaced, args);
MotanSwitcherUtil.setSwitcherValue(MotanConstants.REGISTRY_HEARTBEAT_SWITCHER, true);
}
@Bean
public AnnotationBean motanAnnotationBean() {
AnnotationBean motanAnnotationBean = new AnnotationBean();
motanAnnotationBean.setPackage("com.pepper.metrics.sample.motan.springboot.server");
return motanAnnotationBean;
}
}
19
View Source File : MotanClientApplication.java
License : Apache License 2.0
Project Creator : zrbcool
License : Apache License 2.0
Project Creator : zrbcool
/**
* Description:
*
* @author zhiminxu
* @version 2019-08-14
*/
@SpringBootApplication
public clreplaced MotanClientApplication {
@MotanReferer(basicReferer = "motantestClientBasicConfig", group = "testgroup", directUrl = "127.0.0.1:8002")
private HelloService service;
@Scheduled(cron = "0/1 * * * * ?")
public void timer() {
String name = service.sayHello("hahaha");
System.out.println(name);
}
public static void main(String[] args) {
SpringApplication.run(MotanClientApplication.clreplaced, args);
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Bean
public AnnotationBean motanAnnotationBean() {
AnnotationBean motanAnnotationBean = new AnnotationBean();
motanAnnotationBean.setPackage("com.pepper.metrics.sample.motan.springboot.client");
return motanAnnotationBean;
}
}
19
View Source File : NexusdemoApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced NexusdemoApplication {
public static void main(String[] args) {
SpringApplication.run(NexusdemoApplication.clreplaced, args);
}
}
19
View Source File : ElkdemoApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced ElkdemoApplication {
public static void main(String[] args) {
SpringApplication.run(ElkdemoApplication.clreplaced, args);
}
}
19
View Source File : SpringBootZKProviderApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
/**
* @Description: 启动类
* @author: willzhao E-mail: [email protected]
* @date: 2020/10/17 15:14
*/
@SpringBootApplication
@EnableDubbo
public clreplaced SpringBootZKProviderApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootZKProviderApplication.clreplaced, args);
}
}
19
View Source File : SpringBootZKConsumerApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
/**
* @Description: 启动类
* @author: willzhao E-mail: [email protected]
* @date: 2020/10/17 15:14
*/
@SpringBootApplication
@EnableDubbo
public clreplaced SpringBootZKConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootZKConsumerApplication.clreplaced, args);
}
}
19
View Source File : SpringBootMulticastProviderApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
/**
* @Description: 启动类
* @author: willzhao E-mail: [email protected]
* @date: 2020/10/17 15:14
*/
@SpringBootApplication
@EnableDubbo
public clreplaced SpringBootMulticastProviderApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootMulticastProviderApplication.clreplaced, args);
}
}
19
View Source File : SpringBootMulticastConsumerApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
/**
* @Description: (这里用一句话描述这个类的作用)
*
* @author: willzhao E-mail: [email protected]
* @date: 2020/10/17 19:04
*/
@SpringBootApplication
@EnableDubbo
public clreplaced SpringBootMulticastConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootMulticastConsumerApplication.clreplaced, args);
}
}
19
View Source File : DockerlayerdemoApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
@RestController
public clreplaced DockerlayerdemoApplication {
public static void main(String[] args) {
SpringApplication.run(DockerlayerdemoApplication.clreplaced, args);
}
@RequestMapping(value = "/hello")
public String hello() {
return "hello " + new Date();
}
}
19
View Source File : DockerhealthcheckApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
@RestController
@Slf4j
public clreplaced DockerhealthcheckApplication {
public static void main(String[] args) {
SpringApplication.run(DockerhealthcheckApplication.clreplaced, args);
}
/**
* 表示当前业务容器是否健康
*/
private boolean isHealth = true;
@RequestMapping(value = "/setstate", method = RequestMethod.GET)
public String setState(@RequestParam(name = "state") boolean state) {
isHealth = state;
return "set state success [" + isHealth + "]";
}
@RequestMapping(value = "/getstate", method = RequestMethod.GET)
public ResponseEnreplacedy<String> getState() {
if (isHealth) {
log.info("step probe return success");
return ResponseEnreplacedy.status(200).build();
} else {
log.info("step probe return fail");
return ResponseEnreplacedy.status(403).build();
}
}
}
19
View Source File : DelayrabbitmqconsumerApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced DelayrabbitmqconsumerApplication {
public static void main(String[] args) {
try {
Thread.sleep(6000);
} catch (Exception e) {
e.printStackTrace();
}
SpringApplication.run(DelayrabbitmqconsumerApplication.clreplaced, args);
}
}
19
View Source File : CustomizestartertestdemoApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizestartertestdemoApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizestartertestdemoApplication.clreplaced, args);
}
}
19
View Source File : CustomizepropertyverifyApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizepropertyverifyApplication {
public static void main(String[] args) {
SpringApplication springApplication = new SpringApplication(CustomizepropertyverifyApplication.clreplaced);
springApplication.setApplicationContextClreplaced(CustomApplicationContext.clreplaced);
springApplication.run(args);
}
}
19
View Source File : CustomizelifecycleApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizelifecycleApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizelifecycleApplication.clreplaced, args);
}
}
19
View Source File : CustomizeimportselectorApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizeimportselectorApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizeimportselectorApplication.clreplaced, args);
}
}
19
View Source File : CustomizeimportApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizeimportApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizeimportApplication.clreplaced, args);
}
}
19
View Source File : CustomizebeanpostprocessorApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizebeanpostprocessorApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizebeanpostprocessorApplication.clreplaced, args);
}
}
19
View Source File : CustomizebeanfactorypostprocessorApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizebeanfactorypostprocessorApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizebeanfactorypostprocessorApplication.clreplaced, args);
}
}
19
View Source File : CustomizebeandefinitionregistrypostprocessorApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizebeandefinitionregistrypostprocessorApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizebeandefinitionregistrypostprocessorApplication.clreplaced, args);
}
}
19
View Source File : CustomizeawareApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizeawareApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizeawareApplication.clreplaced, args);
}
}
19
View Source File : CustomizeapplicationeventApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizeapplicationeventApplication {
public static void main(String[] args) {
SpringApplication.run(CustomizeapplicationeventApplication.clreplaced, args);
}
}
19
View Source File : CustomizeapplicationcontextApplication.java
License : Apache License 2.0
Project Creator : zq2599
License : Apache License 2.0
Project Creator : zq2599
@SpringBootApplication
public clreplaced CustomizeapplicationcontextApplication {
public static void main(String[] args) {
SpringApplication springApplication = new SpringApplication(CustomizeapplicationcontextApplication.clreplaced);
springApplication.setApplicationContextClreplaced(CustomizeApplicationContext.clreplaced);
springApplication.run(args);
}
}
19
View Source File : Jt808Application.java
License : MIT License
Project Creator : zpsw
License : MIT License
Project Creator : zpsw
/**
* @Author: Zpsw
* @Date: 2019-05-15
* @Description: 服务器启动在NettyTcpServer中
* @Version: 1.0
*/
@SpringBootApplication
public clreplaced Jt808Application {
public static void main(String[] args) {
SpringApplication.run(Jt808Application.clreplaced, args);
}
}
19
View Source File : Application.java
License : Apache License 2.0
Project Creator : zouzhirong
License : Apache License 2.0
Project Creator : zouzhirong
@SpringBootApplication
// Mybatis Mapper Scan
@MapperScan("com.configx.web.dao")
@EnableAspectJAutoProxy
public clreplaced Application extends SpringBootServletInitializer implements WebApplicationInitializer {
static {
// 配置系统属性
configSystemProperties();
}
/**
* 配置系统属性
*/
private static final void configSystemProperties() {
System.setProperty("spring.config.name", "application,configx");
System.setProperty(ConfigFileApplicationListener.CONFIG_LOCATION_PROPERTY, "file:../config/");
}
public static void main(String[] args) throws InterruptedException {
SpringApplication.run(Application.clreplaced, args);
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(Application.clreplaced);
}
}
19
View Source File : Application.java
License : Apache License 2.0
Project Creator : Zoctan
License : Apache License 2.0
Project Creator : Zoctan
/**
* 主程序
*
* @author Zoctan
* @date 2018/05/27
*/
@EnableCaching
@SpringBootApplication
@EnableEncryptableProperties
@EnableTransactionManagement
@MapperScan(basePackages = ProjectConstant.MAPPER_PACKAGE)
@ServletComponentScan(basePackages = ProjectConstant.FILTER_PACKAGE)
public clreplaced Application extends SpringBootServletInitializer {
@PostConstruct
void started() {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"));
}
public static void main(final String[] args) {
SpringApplication.run(Application.clreplaced, args);
}
/**
* 容器启动配置
*/
@Override
protected SpringApplicationBuilder configure(final SpringApplicationBuilder builder) {
return builder.sources(Application.clreplaced);
}
}
19
View Source File : Application.java
License : Apache License 2.0
Project Creator : Zoctan
License : Apache License 2.0
Project Creator : Zoctan
/**
* 主程序
*
* @author Zoctan
* @date 2018/05/27
*/
@EnableCaching
@SpringBootApplication
@EnableEncryptableProperties
@EnableTransactionManagement
@MapperScan(basePackages = MAPPER_PACKAGE)
@ServletComponentScan(basePackages = FILTER_PACKAGE)
public clreplaced Application extends SpringBootServletInitializer {
public static void main(final String[] args) {
SpringApplication.run(Application.clreplaced, args);
}
/**
* 容器启动配置
*/
@Override
protected SpringApplicationBuilder configure(final SpringApplicationBuilder builder) {
return builder.sources(Application.clreplaced);
}
}
19
View Source File : RestApiApplication.java
License : Apache License 2.0
Project Creator : zmyzheng
License : Apache License 2.0
Project Creator : zmyzheng
@SpringBootApplication
public clreplaced RestApiApplication {
public static void main(String[] args) {
SpringApplication.run(RestApiApplication.clreplaced, args);
}
}
19
View Source File : BackWebApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* @author zlt
*/
@SpringBootApplication
public clreplaced BackWebApplication {
public static void main(String[] args) {
SpringApplication.run(BackWebApplication.clreplaced, args);
}
}
19
View Source File : TransactionManagerApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* @author zlt
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableTransactionManagerServer
public clreplaced TransactionManagerApplication {
public static void main(String[] args) {
SpringApplication.run(TransactionManagerApplication.clreplaced, args);
}
}
19
View Source File : MonitorApp.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* @author zlt
*/
@EnableAdminServer
@EnableDiscoveryClient
@SpringBootApplication
public clreplaced MonitorApp {
public static void main(String[] args) {
SpringApplication.run(MonitorApp.clreplaced, args);
}
}
19
View Source File : JobExecutorApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* @author xuxueli 2018-10-28 00:38:13
*/
@SpringBootApplication
public clreplaced JobExecutorApplication {
public static void main(String[] args) {
SpringApplication.run(JobExecutorApplication.clreplaced, args);
}
}
19
View Source File : JobAdminApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* @author xuxueli 2018-10-28 00:38:13
*/
@SpringBootApplication
public clreplaced JobAdminApplication {
public static void main(String[] args) {
SpringApplication.run(JobAdminApplication.clreplaced, args);
}
}
19
View Source File : SCGatewayApp.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* @author zlt
* @date 2019/10/5
* <p>
* Blog: https://zlt2000.gitee.io
* Github: https://github.com/zlt2000
*/
@EnableFeignClients
@EnableBaseFeignInterceptor
@EnableDiscoveryClient
@SpringBootApplication
public clreplaced SCGatewayApp {
public static void main(String[] args) {
SpringApplication.run(SCGatewayApp.clreplaced, args);
}
}
19
View Source File : ServiceCApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* Description:
* Date: 2018/12/25
*
* @author ujued
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableDistributedTransaction
public clreplaced ServiceCApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceCApplication.clreplaced, args);
}
}
19
View Source File : ServiceBApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* Description:
* Date: 2018/12/25
*
* @author ujued
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableDistributedTransaction
public clreplaced ServiceBApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceBApplication.clreplaced, args);
}
}
19
View Source File : ServiceAApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* Description:
* Date: 2018/12/25
*
* @author ujued
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableDistributedTransaction
public clreplaced ServiceAApplication {
public static void main(String[] args) {
SpringApplication.run(ServiceAApplication.clreplaced, args);
}
}
19
View Source File : WebSSOApplication.java
License : Apache License 2.0
Project Creator : zlt2000
License : Apache License 2.0
Project Creator : zlt2000
/**
* @author zlt
* @date 2020/3/10
* <p>
* Blog: https://zlt2000.gitee.io
* Github: https://github.com/zlt2000
*/
@SpringBootApplication
public clreplaced WebSSOApplication {
public static void main(String[] args) {
SpringApplication.run(WebSSOApplication.clreplaced, args);
}
}
See More Examples