- 浏览: 14037 次
- 性别:
- 来自: 上海
最新评论
文章列表
来自:http://blog.china.com.cn/dengshucai/art/485885.html
如何在一个tomcat下的几个web应用之间共享session
我们采取的是集中管理的办法。主要技术:
1.设置Context 的crossContext="true",使得各个web应用的servletcontext是可以互访的
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeplo ...
Session Cache Server 及Tomcat集群架构概念
或见本人CSDN博客
http://blog.csdn.net/myloon/archive/2010/09/06/5866456.aspx
1. Sessin Cache Server (Session 缓存服务器)[SCS]
特性:
1) 单个SCS:SCS中缓存Session数据,多个应用服务器共享SCS中Session;每次有新的Session或新的Session数据更新时,除了正常的缓存外,还缓存有变化的Session ID和数据Key,以通知或被其他SCS感知同步数据;通过 ...
这个是因为Facted Project中的Java版本设定与项目的Java版本设定不一致
Unable to locate the Javac Compiler
默认分类 2009-12-31 19:14:20 阅读346 评论0 字号:大中小 订阅
使用eclipse的maven插件遇到一个问题,憋了我好几天,刚在忽然开窍,解决了。为这么个破问题耽误几天时间真不值得,特想骂人。
本人机 ...
package com.exam.taglib.table;
import org.apache.struts2.components.UIBean;
import org.apache.struts2.views.annotations.StrutsTag;
import org.apache.struts2.views.annotations.StrutsTagAttribute;
import com.opensymphony.xwork2.util.ValueStack;
import javax.ser ...
package com.woyo.reader.cms.remote.service;
import java.lang.reflect.Field;
import org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessorAdapter;
import org.springframework.stereotype.Service;
import org.springframework.util.ReflectionUtils;
import com.woyoframework.modules.s ...
网上看到的取IP的方法,觉的挺好。还想再linux、window下都管用
private static String getLocalSiteIP() throws Exception {
String siteString = "";
Enumeration netInterfaces = NetworkInterface.getNetworkInterfaces();
while (netInterfaces.hasMoreElements()) {
NetworkInterface ni = (NetworkInterface) netIn ...
package org.apache.commons.beanutils;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.util.HashMap;
import java.util.Map;
/**
*
* @since 1.0
*/
public class PageBeanUtilsBean extends BeanUtilsBean {
@Override
public Map<String, Object> ...