spring
文章平均质量分 77
it.sky
这个作者很懒,什么都没留下…
展开
-
spring动态定时器
0 0/5 * * * ? 4 package com.util.task;import ...原创 2016-06-14 11:40:07 · 129 阅读 · 0 评论 -
Spring事务隔离级别
一、Propagation :key属性确定代理应该给哪个方法增加事务行为。这样的属性最重要的部份是传播行为。有以下选项可供使用:PROPAGATION_REQUIRED--支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。PROPAGATION_SUPPORTS 支持当前事务,如果当前没有事务,就以非事务方式执行。PROPAG...原创 2016-10-08 09:48:49 · 299 阅读 · 0 评论 -
spring source下载
http://www.java2s.com/Code/Jar/o/Downloadorgspringframeworkcoresources301RELEASEAjar.htm原创 2016-10-08 17:51:42 · 152 阅读 · 0 评论 -
spring mvc 上传下载
//下载 @RequestMapping("/attachmentDownload") @ResponseBody public ResponseEntity attachmentDownload(HttpServletRequest request, HttpServletResponse response, HttpSession session, ...原创 2016-12-08 10:26:27 · 83 阅读 · 0 评论 -
spring Jndi 测试方法
public class ApplicationContextForTest { protected ApplicationContext applicationContext; private void initJndi() throws NamingException{ SimpleNamingContextBuilder builder = SimpleNamingC...原创 2017-05-12 09:43:28 · 248 阅读 · 0 评论