摘要:
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(c... 阅读全文
摘要:
1.配置文件校验在使用配置文件校验时,必须使用@configurationproperties注解,@value不支持该注解,在类上添加@validated注解,标识该类会被校验@Email表示校验类型为email @Data @ConfigurationPro... 阅读全文
摘要:
1.使用configurationproperties获取在类上边加上@ConfigurationProperties(prefix = “Persion”)即可@Data@ConfigurationProperties(prefix = "Persion")@Com... 阅读全文
摘要:
1.yaml形式配置1.yaml Persion: name: 张三 age: 18 birthday: 2017/8/21 pets: {name: dog,age: 2} frients: [... 阅读全文
摘要:
1.spring boot 项目结构project mainjavarecources static 静态资源文件 css js imgtemplate 模板文件 freemaker 等 test2.配置文件springboot使用一个全... 阅读全文
摘要:
1.Spring boot 自动配置spring boot 通过@springbootapplication来启动项目,使用@springbootapplication标记过的类证明是这个类的主程序,程序通过运行这个类的main方法来启动这个程序@SpringBoot... 阅读全文
摘要:
1.Spring boot helloword1.启动类 //启动器 @SpringBootApplication public class ResgiterApp { public static void main(String[] ar... 阅读全文
摘要:
在使用idea 时莫名奇妙的出现了这个错误1.错误Error:java: G:\springboot\target\classes\com\limit\SpringBootTestApp.class (拒绝访问。) Error:java: G:\springboot\... 阅读全文