Spring
文章平均质量分 86
youhan26
这个作者很懒,什么都没留下…
展开
-
Spring 3 Validation (jsr-303)
5.7 Spring 3 ValidationSpring 3 introduces several enhancements to its validation support. First, the JSR-303 Bean Validation API is now fully supported. Second, when used programatically, Spr转载 2014-09-09 21:48:47 · 792 阅读 · 0 评论 -
Spring 系列: Spring 框架简介
Spring 系列: Spring 框架简介Spring AOP 和 IOC 容器入门在这由三部分组成的介绍 Spring 框架的系列文章的第一期中,将开始学习如何用 Spring 技术构建轻量级的、强壮的 J2EE 应用程序。developerWorks 的定期投稿人 Naveen Balani 通过介绍 Spring 框架开始了他由三部分组成的 Spring 系转载 2014-09-09 21:43:26 · 585 阅读 · 0 评论 -
Spring utils
String to File:FileUtils.writeStringToFile(new File("test.txt"), "Hello File");转载 2014-09-10 17:16:34 · 791 阅读 · 0 评论 -
Spring 一
Spring DAO:JDBC DAO 抽象层提供了有意义的异常层次结构,可用该结构来管理异常处理和不同数据库供应商抛出的错误消息。异常层次结构简化了错误处理,并且极大地降低了需要编写的异常代码数量(例如打开和关闭连接)。Spring DAO 的面向 JDBC 的异常遵从通用的 DAO 异常层次结构。Spring 的核心要点是:支持不绑定到特定 J2EE 服务的可重用业务和数据访问对象原创 2014-10-08 23:38:05 · 460 阅读 · 0 评论 -
cannot simultaneously fetch multiple bags
当cannot simultaneously fetch multiple bags 问题的解决办法完整的异常信息如下:org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags at org.hibernate.loader.BasicLoader.转载 2014-09-30 14:22:21 · 442 阅读 · 0 评论 -
Spring 定时任务
注解标识: @CronMethod(cronExpression = "0 10 0 * * ?", cronName = "jobName", concurrent=true) cronExpression = "0 10 0 * * ?" // 秒 分 时 日 月 年 每天0:10 = 0 10 0 * * ? 每小时第10分钟 = 0 10 * * * ? 每隔转载 2015-05-06 09:44:30 · 385 阅读 · 0 评论 -
XML Schema-based configuration
XML Schema-based configuration34.1 IntroductionThis appendix details the XML Schema-based configuration introduced in Spring 2.0 and enhanced and extended in Spring 2.5 and 3转载 2015-07-09 22:35:02 · 1254 阅读 · 0 评论