feat: 将启动参数添加进spring容器

This commit is contained in:
xiaochangbai
2023-06-02 20:35:23 +08:00
parent 59a80110ef
commit a9edf83584

View File

@@ -15,7 +15,7 @@ import org.springframework.boot.web.servlet.ServletComponentScan;
public class MallchatCustomApplication {
public static void main(String[] args) {
SpringApplication.run(MallchatCustomApplication.class);
SpringApplication.run(MallchatCustomApplication.class,args);
}
}