摘要:
Waiting server-side response timeout by scan timer 原因:在Linux中开启了Tomcat服务 阅读全文
摘要:
(转自http://www.360doc.com/content/18/0411/18/54411776_744807713.shtml) Nginx负载均衡 最近迷上了Nginx,真实麻雀虽小,五脏俱全..功能实在强大.. nginx不单可以作为强大的web服务器,也可以作为一个反向代理服务器,而 阅读全文
摘要:
package singleton; /** * 双重锁 * 是否Lazy初始化:是 * 是否多线程安全:是 * 描述:在多线程下能保持高性能 * @author Tendo-pein * */ public class Singleton { private volatile static Singleton singleton; private Singleto... 阅读全文
摘要:
更多的属性查看default.properties 阅读全文
摘要:
1. valueStack内部结构 ValueStack的组成: 它就是一个ArrayList 和 context 在struts2框架中我们通过ognl表达式来获取valueStack中数据,没有使用#就会从CompoundRoot中获取数据, 如果使用#来获取,这时就会从context中来获取 阅读全文
摘要:
1. ServletActionContext获取 2. 采用注入方式 Struts2框架在运行时,请求会被StrutsPrepareAndExecuteFilter拦截,会根据请求,去 strtus.xml文件中查找到匹配的action,在action执行前,会走一些interceptor 默认执 阅读全文