2024-02-18 15:45:50 +08:00
|
|
|
|
/*
|
|
|
|
|
|
* Copyright 2019-2020 Zheng Jie
|
|
|
|
|
|
*
|
|
|
|
|
|
* 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 com.youchain;
|
|
|
|
|
|
|
|
|
|
|
|
import com.youchain.annotation.rest.AnonymousGetMapping;
|
|
|
|
|
|
import com.youchain.utils.SpringContextHolder;
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration;
|
|
|
|
|
|
import org.springframework.boot.context.ApplicationPidFileWriter;
|
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
|
|
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
|
|
|
|
|
|
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
|
|
|
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
|
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 开启审计功能 -> @EnableJpaAuditing
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author Liu Xue
|
|
|
|
|
|
* @date 2018/11/15 9:20:19
|
|
|
|
|
|
*/
|
|
|
|
|
|
@EnableAsync
|
|
|
|
|
|
@RestController
|
|
|
|
|
|
@Api(hidden = true)
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
|
@EnableTransactionManagement
|
2024-04-30 09:46:49 +08:00
|
|
|
|
//@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class})
|
2024-02-18 15:45:50 +08:00
|
|
|
|
@EnableJpaAuditing(auditorAwareRef = "auditorAware")
|
|
|
|
|
|
|
|
|
|
|
|
public class AppRun {
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
|
SpringApplication springApplication = new SpringApplication(AppRun.class);
|
|
|
|
|
|
// 监控应用的PID,启动时可指定PID路径:--spring.pid.file=/home/eladmin/app.pid
|
|
|
|
|
|
// 或者在 application.yml 添加文件路径,方便 kill,kill `cat /home/eladmin/app.pid`
|
|
|
|
|
|
springApplication.addListeners(new ApplicationPidFileWriter());
|
|
|
|
|
|
springApplication.run(args);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
|
|
public SpringContextHolder springContextHolder() {
|
|
|
|
|
|
return new SpringContextHolder();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 访问首页提示
|
|
|
|
|
|
*
|
|
|
|
|
|
* @return /
|
|
|
|
|
|
*/
|
|
|
|
|
|
@AnonymousGetMapping("/")
|
|
|
|
|
|
public String index() {
|
|
|
|
|
|
return "Backend service started successfully";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|