Motivation
最近的工作涉及Web框架搭建,在了解公司原有采用框架基础上对Web开发技术栈做了一次升级,在次做记录。
Audience
J2EE Web Application Developer, Spring user,
Scope
快速应用开发、Web层+安全、持久层
Progress
2015/6/14 init
2015/07/25 move to an real application, see A candidate solution for Java Web Application - current session(http://www.cnblogs.com/zhoujiagen/p/4678792.html)
2015/10/15 不得行了,得有点微观架构性的认识了,先从Spring context加载资源、bean定义等开始吧。
Outline
1 用Spring Boot快速开发应用
2 Spring的Web框架和Security横切面
3 Spring Data:通用数据持久化解决方案
Content
1 用Spring Boot快速开发应用
1.1 基本概念
(1) spring boot starters
聚合常用的一组依赖成单个依赖,可一添加到Maven或Gradle build中
一些常见的starter,注意starter之间存在一些包含引用关系:
spring-boot-starter
spring-boot-starter-test
spring-boot-starter-web
spring-boot-starter-freemarker
spring-boot-starter-tomcat
spring-boot-starter-security
spring-boot-starter-log4j
spring-boot-starter-logging
spring-boot-starter-jdbc
spring-boot-starter-data-jpa
spring-boot-starter-redis
(2) autoconfiguration
借助Spring4的条件化配置,合理的猜测应用中所需的bean、并做自动配置
原理:Environment/Conditional Bean的引入
两种方式:classpath中jar包的引用、starter触发自动配置
(a) Spring MVC Thymeleaf模板视图
一般需要配置:ThymeleafViewResolver, SpringTemplateEngine, TemplateResolver
将其jar包放到classpath中,Spring Boot检测到后,会做出你使用Thymeleaf视图、并自动配置这些bean
(b) web starter
将web starter添加到依赖中后,Spring Boot检测到后,将配置一些bean以支持Spring MVC:view resovler, resource handler, message converters。
(3) command-line interface(CLI)
借助Groovy和自动配置,进一步简化Spring应用开发
(4) actuator
给Spring Boot应用添加一些管理特征
2 Spring的Web框架和Security横切面
抛开MVC设计模式引入的影响不谈,Spring引入的JavaConfig、Servlet3.0带来的WebApplicationInitializer去web.xml、应用XML配置给开发工作带来了极大的便利。
@RestController、ContentNegotiatingViewResolver的引入为开发REST应用提供了便利。
Spring Security提供了Web安全考虑的一个基本实现。
后续的Spring Session则会带来Web Session处理的一个通用性解决方案。
TODO add more descriptive examples
3 Spring Data:通用数据持久化解决方案
熊心勃勃的Spring项目,期望提供RDBMS、NoSQL数据库访问的一致性解决方案。
因主要采用JPA 2.1,这里只会讨论spring-data-jpa。
TODO add more descriptive examples
References
[1] Spring in Action, 4th Edition
[2] Spring Framework Reference Documentation[4.1.6.RELEASE].pdf
[3] Spring Boot Reference Guide[1.2.4.RELEASE].pdf
[4] Spring Security Reference[4.0.1.RELEASE]
[5] Spring Data JPA - ReferenceDocumentation[1.8.0.RELEASE].pdf