mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-11 09:20:30 +08:00
chore: 工作区反编译与 Maven/文档/脚本同步到发布分支
- artifacts/decompiled 树与相关源码变更 - maven-cw-elevator-application 业务 docs 与 package-info - scripts 下 formatter 校验与辅助脚本 - 其他子工程/接口与发布线一并纳入版本控制 Made-with: Cursor Former-commit-id: e102e8cab64e575bcd23c9a66a598aa1892bb492
This commit is contained in:
+56
-60
@@ -1,60 +1,56 @@
|
||||
/* */ package cn.cloudwalk;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.event.EnableCloudwalkEvent;
|
||||
/* */ import com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration;
|
||||
/* */ import io.micrometer.core.instrument.MeterRegistry;
|
||||
/* */ import io.micrometer.spring.autoconfigure.MeterRegistryCustomizer;
|
||||
/* */ import org.mybatis.spring.annotation.MapperScan;
|
||||
/* */ import org.springframework.beans.factory.annotation.Value;
|
||||
/* */ import org.springframework.boot.Banner;
|
||||
/* */ import org.springframework.boot.SpringApplication;
|
||||
/* */ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
/* */ import org.springframework.cloud.netflix.feign.EnableFeignClients;
|
||||
/* */ import org.springframework.context.annotation.Bean;
|
||||
/* */ import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
||||
/* */ import org.springframework.scheduling.annotation.EnableAsync;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @SpringBootApplication(exclude = {PageHelperAutoConfiguration.class})
|
||||
/* */ @EnableFeignClients
|
||||
/* */ @MapperScan({"cn.cloudwalk.data.**.mapper", "cn.cloudwalk.task.data.mapper"})
|
||||
/* */ @EnableAsync
|
||||
/* */ @EnableCloudwalkEvent
|
||||
/* */ @EnableAspectJAutoProxy(exposeProxy = true)
|
||||
/* */ public class Application
|
||||
/* */ {
|
||||
/* */ public static void main(String[] args) {
|
||||
/* 41 */ System.out.println("[标准GPU服务器-出入口版]- 开始启动...");
|
||||
/* */
|
||||
/* 43 */ SpringApplication app = new SpringApplication(new Object[] { Application.class });
|
||||
/* 44 */ app.setBannerMode(Banner.Mode.OFF);
|
||||
/* 45 */ app.run(args);
|
||||
/* */
|
||||
/* 47 */ System.out.println("[标准GPU服务器-出入口版]- 启动完成...");
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ @Bean
|
||||
/* */ MeterRegistryCustomizer<MeterRegistry> configurer(@Value("${spring.application.name}") String applicationName) {
|
||||
/* 52 */ return meterRegistry -> meterRegistry.config().commonTags(new String[] { "application", applicationName });
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\ninca-crk-std-backend-V2.9.1_20210630.jar!\cn\cloudwalk\Application.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
package cn.cloudwalk;
|
||||
|
||||
import cn.cloudwalk.event.EnableCloudwalkEvent;
|
||||
import com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration;
|
||||
import io.micrometer.core.instrument.MeterRegistry;
|
||||
import io.micrometer.spring.autoconfigure.MeterRegistryCustomizer;
|
||||
import org.mybatis.spring.annotation.MapperScan;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.boot.Banner;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cloud.netflix.feign.EnableFeignClients;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
||||
import org.springframework.scheduling.annotation.EnableAsync;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@SpringBootApplication(exclude = {PageHelperAutoConfiguration.class})
|
||||
@EnableFeignClients
|
||||
@MapperScan({"cn.cloudwalk.data.**.mapper", "cn.cloudwalk.task.data.mapper"})
|
||||
@EnableAsync
|
||||
@EnableCloudwalkEvent
|
||||
@EnableAspectJAutoProxy(exposeProxy = true)
|
||||
public class Application
|
||||
{
|
||||
public static void main(String[] args) {
|
||||
System.out.println("[标准GPU服务器-出入口版]- 开始启动...");
|
||||
|
||||
SpringApplication app = new SpringApplication(new Object[] { Application.class });
|
||||
app.setBannerMode(Banner.Mode.OFF);
|
||||
app.run(args);
|
||||
|
||||
System.out.println("[标准GPU服务器-出入口版]- 启动完成...");
|
||||
}
|
||||
|
||||
@Bean
|
||||
MeterRegistryCustomizer<MeterRegistry> configurer(@Value("${spring.application.name}") String applicationName) {
|
||||
return meterRegistry -> meterRegistry.config().commonTags(new String[] { "application", applicationName });
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user