发布时间:2013-09-04 16:59:44
http://developer.51cto.com/art/200906/129189.htm......【阅读全文】
发布时间:2013-04-24 10:55:43
方法一:在初始化时保存ApplicationContext对象代码:ApplicationContext ac = new FileSystemXmlApplicationContext("applicationContext.xml");ac.getBean("beanId");说明:这种方式适用于采用Spring框架的独立应用程序,需要程序通过配置文件手工初始化Spring的情况。方法二:通过Spring提供的工具类获取Appli.........【阅读全文】
发布时间:2013-01-31 16:59:54
public class DescriptionIDUserType implements UserType, ParameterizedType { private Class enumClass; public void setParameterValues(Properties parameters) { try { enumClass = ReflectHelper.classForName(parameters.getProperty( " class " )); } ca.........【阅读全文】
发布时间:2013-01-31 11:29:44
http://www.cnblogs.com/zhongjinbin/archive/2012/05/03/2480914.html......【阅读全文】