摘要: 1)、编写国际化配置文件 login_en_US.properties login_zh_CN.properties login.properties 2)使用ResourceBundleMessageSource管理国际化资源文件 配置basename 3) Thymeleaf使用Message 阅读全文
posted @ 2019-02-22 22:59 小亮的BLOG 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 1、引入thymeleaf、静态资源等依赖 2、欢迎页面及静态资源配置解析:WebMvcAutoConfiguration 3、注册templates主页面访问路径/、/index 4、index.html 5、LoginController 6、用拦截器LoginInterceptor简单实现未登 阅读全文
posted @ 2019-02-22 22:23 小亮的BLOG 阅读(2295) 评论(0) 推荐(0) 编辑
摘要: 启动流程: 1、创建SpringApplication对象 2、运行run方法 //准备上下文环境;将environment保存到ioc中;而且applyInitializers(); //applyInitializers():回调之前保存的所有的ApplicationContextInitial 阅读全文
posted @ 2019-02-22 21:34 小亮的BLOG 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 一、Spring Data简介 项目的目的是为了简化构建基于 Spring 框架应用的数据访问技术,包括非关系数据库、Map-Reduce 框架、云数据服务等等;另外也包含对关系数据库的访问支持。 SpringData为我们提供使用统一的API来对数据访问层进行操作: Repository<T, I 阅读全文
posted @ 2019-02-22 20:44 小亮的BLOG 阅读(478) 评论(0) 推荐(0) 编辑