摘要:
import java.util.Locale; //如果你想div定制化的功能,只需要写这个组件然后将它交给springBoot,springBoot就会帮我们自动装配 //全面扩展SpringMVC dispatcherservlet //如果我们要扩展springmvc,官方建议我们这样去做。 阅读全文
摘要:
模板引擎:对网页模板和数据进行渲染返回给用户 文档https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.pdf 阅读全文
摘要:
SpringBoot加载静态资源有关的自动配置类为WebMvcAutoConfiguration中的addResourceHandlers()方法 WebMvcAutoConfiguration的properties类为@EnableConfigurationProperties({ WebMvcP 阅读全文
摘要:
#application.yaml # k=v #对空格要求很高 #可以注入到我们的配置类中 #yaml可以直接给实体类赋值 #普通的key-value name: jsp #对象 student: name:jsp age:3 #行内写法 student:{name:jsp,age:3} #数组 阅读全文
摘要:
//将SpringBoot应用启动 //SpringApplication类的实例化 /*推断这个应用的类型时普通的项目(运行完结束),还是web项目(等待请求) @SuppressWarnings({ "unchecked", "rawtypes" }) public SpringApplicat 阅读全文