【修改】nacos启动类名称修改,Banner修改

【修改】字典多选组件回显Bug修改,调整用户模块的edit方法,确保数据逻辑
This commit is contained in:
zer0Black
2022-04-07 23:14:23 +08:00
parent a15ebdc37d
commit 31b54531e3
4 changed files with 16 additions and 23 deletions
@@ -1,14 +1,13 @@
${AnsiColor.BRIGHT_BLUE}
(_) | | | |
_ ___ ___ ___ __ _ ______| |__ ___ ___ | |_
| |/ _ \/ _ \/ __/ _` |______| '_ \ / _ \ / _ \| __|
| | __/ __/ (_| (_| | | |_) | (_) | (_) | |_
| |\___|\___|\___\__, | |_.__/ \___/ \___/ \__|
_/ | __/ |
|__/ |___/
____. __________ __
| | ___________ ____ \______ \ ____ _____/ |_
| |/ __ \_ __ \/ _ \ ______ | | _// _ \ / _ \ __\
/\__| \ ___/| | \( <_> ) /_____/ | | ( <_> | <_> ) |
\________|\___ >__| \____/ |______ /\____/ \____/|__|
\/ \/
${AnsiColor.BRIGHT_GREEN}
jero Boot Version: 2.4.6
Jero Boot Version: 2.4.6
Spring Boot Version: ${spring-boot.version}${spring-boot.formatted-version}
${AnsiColor.BLACK}
@@ -14,7 +14,7 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication(scanBasePackages = "com.alibaba.nacos")
@ServletComponentScan
@EnableScheduling
public class JeecgNacosApplication {
public class JeroNacosApplication {
/**
* 是否单机模式启动
@@ -32,6 +32,6 @@ public class JeecgNacosApplication {
System.setProperty("server.tomcat.basedir","logs");
//自定义启动端口号
System.setProperty("server.port","8848");
SpringApplication.run(JeecgNacosApplication.class, args);
SpringApplication.run(JeroNacosApplication.class, args);
}
}