随笔分类 -  草稿-未总结的小记

摘要:String perfTimeStr = "";// 统一设置日历格式 Calendar calendar = Calendar.getInstance(); calendar.setTime(new Date()); calendar.set(Calendar.DATE, 1); calendar 阅读全文
posted @ 2016-11-01 16:38 limeOracle 阅读(124) 评论(0) 推荐(0) 编辑
摘要:<mvc:annotation-driven />的可选配置 <mvc:annotation-driven/>相当于注册了DefaultAnnotationHandlerMapping和AnnotationMethodHandlerAdapter两个bean,配置一些messageconverter 阅读全文
posted @ 2016-10-27 13:28 limeOracle 阅读(165) 评论(0) 推荐(0) 编辑
摘要:spring从2.5版本开始支持注解注入,注解注入可以省去很多的xml配置工作。由于注解是写入java代码中的,所以注解注入会失去一定的灵活性,我们要根据需要来选择是否启用注解注入。 我们首先看一个注解注入的实际例子,然后再详细介绍context:component-scan的使用。 如果你已经在用 阅读全文
posted @ 2016-10-26 18:05 limeOracle 阅读(453) 评论(0) 推荐(0) 编辑