程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Tomcat 使用Redis存儲Session,tomcatredis

Tomcat 使用Redis存儲Session,tomcatredis

編輯:JAVA綜合教程

Tomcat 使用Redis存儲Session,tomcatredis


Tomcat Redis Session Github 地址。

下載 commons-pool2-2.2.jar,jedis-2.5.2.jar,tomcat-redis-session-manager-2.0.0.jar 這三個包,將其放到 tomcat 目錄下的lib目錄下。

修改tomcat 的conf目錄下的 context.xml 文件。

在Context中插入下面的代碼。

<Valve className="com.orangefunction.tomcat.redissessions.RedisSessionHandlerValve" />
    <Manager className="com.orangefunction.tomcat.redissessions.RedisSessionManager"
     host="localhost"
     port="6389"
     database="0"
     maxInactiveInterval="60"
     />

更詳細的方式可以查看github的配置。

這樣就配置好了一件簡單的使用redis存儲session的環境,對於集群可以采取相同的配置。

測試Servlet:

@WebServlet(urlPatterns = "/myhttp")
public class MyHttpServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        //獲取session
        HttpSession httpSession = request.getSession();
        httpSession.setAttribute("name","name");
        //設置為0 永不過期
        httpSession.setMaxInactiveInterval(1000);
        //使httpserssion無效
//        httpSession.invalidate();
        System.out.println(httpSession.getId());
        response.getWriter().print("http");
    }
}

啟動tomcat,訪問 http://localhost:8080/myhttp 則可以在redis下看到

證明環境已經配置成功,可以使用了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved