spring
liuwzh
这个作者很懒,什么都没留下…
展开
-
autowire
In all the examples so far, we have had to define explicitly, via the configuration file, how individual beans are wired together. If you don’t like having to wire all your components together, you can have Spring attempt to do so automatically. By defau原创 2010-10-01 14:49:00 · 306 阅读 · 0 评论 -
InitializingBean init-method
You can use both an initialization method and the InitializingBean on the same bean instance. In this case, Spring invokes InitializingBean.afterPropertiesSet() first, followed by your initialization method.原创 2010-10-04 12:54:00 · 336 阅读 · 0 评论 -
this.beanFactory.destroySingletons()
public class ShutdownHookDemo { public static void main(String[] args) throws IOException { XmlBeanFactory factory = new XmlBeanFactory( new ClassPathResource("/META-INF/spring/lifecycledemo5-context.xml")); Runtime.getRuntime().addShutdownHook(new Thr原创 2010-10-04 13:13:00 · 1408 阅读 · 0 评论 -
DisposableBean destroy-method
DisposableBean destroy-method原创 2010-10-04 13:13:00 · 398 阅读 · 0 评论 -
AOP
---------------------------------------------------------------------- two distinct types of AOP: • static AOP : AspectJ’s AOP : the crosscutting logic is applied to your code at compile time,and you cannot change it without modifying the code and recomp原创 2010-10-14 11:24:00 · 223 阅读 · 0 评论 -
Transaction
Spring在TransactionDefinition接口中规定了7种类型的事务传播行为,它们规定了事务方法和事务方法发生嵌套调用时事务如何进行传播: 表1事务传播行为类型 事务传播行为类型 说明 PROPAGATION_REQUIRED 如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中。这是最常见的选择。 PROPAGATION_SUPPORTS 支持当前事务,如果当前没有事务,就以非事务方式执行。 PROPAGATION_MANDATORY 使用当前的事务,如果当前没有事务,原创 2010-10-18 13:51:00 · 221 阅读 · 0 评论 -
weblogic和tomcat获取的应用路径不一样
tomcat获取路径时包括一个“/” weblogic获取路径时不包括最后的“/” String strVendor="weblogic"; //得到系统路径 if ("weblogic".equals(strVendor)){ ServletContext app=(ServletContext)pageContext.getServletContext(); String strSysPath = app.getRealPath("/") + "/NEUUpdate/"; }e原创 2010-10-19 09:48:00 · 1361 阅读 · 0 评论 -
两种结合struts和spring的方法
第一种: 以struts的plugin的方式,让spring接管struts的action,至此这些action就存在于spring的配置文件中,并且可以进行任何spring bean的注入.好处就是方便,灵活,然后spring还能用非单例模式来执行action 第二种: 在appfuse看到的.写一个BaseAction,里边加入一些常用方法,比如获得spring的bean的方法 Java代码 1.public Object getBean(String name); {原创 2010-10-19 09:49:00 · 262 阅读 · 0 评论