SpringBoot
qq_42272067
这个作者很懒,什么都没留下…
展开
-
SpringBoot启动后直接退出Process finished with exit code 1
Process finished with exit code 1 问题描述问题解决问题描述出现这个问题时,控制台没有任何输出,进程直接退出Process finished with exit code 1问题解决尝试加了一行打印语句System.out.println(“SpringBoot Start…”);结果是可以打印出来的:SpringBoot Start....Process finished with exit code 1此时突然想到,那程序入口没问题,就是下一行的问题了原创 2020-12-05 15:43:52 · 1086 阅读 · 0 评论 -
在SpringBoot项目中如何知道可以在application.properties中可以配置那些属性
首先我们知道SpringBoot提供了一个顶层依赖<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version></parent>通过这个顶层依赖,我们只需要导入需要的ja原创 2020-08-12 21:43:14 · 592 阅读 · 3 评论