文章列表
struts.action.extension
The URL extension to use to determine if the request is meant for a
Struts action
用URL扩展名来确定是否这个请求是被用作Struts action,其实也就是设置 action的后缀,例如login.do的’do’字。
struts.custom.i18n.resour ...
- 2008-07-03 17:10
- 浏览 650
- 评论(0)
在Tomcat启动时,产生如下异常:
严重: Exception starting filter struts2
Cannot locate the chosen ObjectFactory implementation: spring
struts.properties 文件设置如下:
struts.objectFactory
=
spring
原因:
缺少
struts2-spring-plugin-2.0.11.1.jar
包
Struts2 中使用 Spring 的 IOC ...
- 2008-07-03 16:50
- 浏览 1635
- 评论(0)
Lazy Loading Singletons
public class Singleton{
//静态内部类
static class SingletonHolder {
static Singleton instance = new Singleton();
}
public static Singleton getInstance() {
return SingletonHolder.instance;
}
}
引用文章内容:
http://crazybob.or ...
- 2008-07-03 14:30
- 浏览 607
- 评论(0)