Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 694 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 694 Bytes

Spring 框架学习示例

example01

  1. 构建支持注解配置的应用上下文 AnnotationConfigApplicationContext
  2. 使用组件扫描注解 @ComponentScan
  3. 使用组件注解 @Component

example51

  1. 控制器返回日志切面 example.aspect.ControllerReturnLoggingAspect
  2. 接口请求日志记录 example.web.filter.WebRequestLogFilter

example52

  1. CamelParamRequestWrapper 转换下划线参数为驼峰风格的 HttpServletRequest 实现

example53

  1. Spring Filter

example91

  1. 脚本 start.sh:启动一个编译好的 Spring Jar,使用 nohup 命令。

example02

  1. 一个 RestControllerAdvice 例子,实现了对于常见异常的处理。