
Spring
文章平均质量分 83
itboone
Talk is cheap, show me the code.
展开
-
[spring] @Enable**注解实现原理与实例
Spring提供了一系列以Enable开头的注解,这些注解本质上是激活Spring的某些管理功能。例如@EnableWebMvc注解引入了MVC框架在Spring应用中需要用到的所有bean,@EnableAsync注解可以使Bean在spring应用中支持异步功能。@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@...转载 2019-01-24 00:42:16 · 2259 阅读 · 1 评论 -
基于@Transactional注解的Spring事务
@Transactional注解使用概述、spring事务回滚规则(异常回滚等)原创 2017-08-25 14:39:37 · 1117 阅读 · 1 评论 -
spring mvc上传文件超过设定大小异常处理客户端无响应:请求的连接被重置
controller类: @RequestMapping(path = "/file", method = RequestMethod.POST) public UploadMsg uploadFile(@RequestParam("uploadFile") MultipartFile file, String userCode) throws Exception { ...原创 2017-07-31 10:49:15 · 12027 阅读 · 1 评论