spring boot
凉果机
这个作者很懒,什么都没留下…
展开
-
Spring Boot配置文件yml
spring boot中的后缀为yml的配置文件 首先为了方便讲解我们需要先创建两个类分别为Person和Dog public class Dog { private String name; private Integer age; public String getName() { return name; } public void setName(String name) { this.name = name; }原创 2020-07-31 18:49:32 · 174 阅读 · 0 评论 -
初学spring boot遇到的坑
spring启动器可以和controller包平级,但绝不允许controller包在spring启动器之上,否则主程序无法运行原创 2020-07-30 22:15:43 · 102 阅读 · 0 评论