<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    wadise

    BlogJava 首頁 新隨筆 聯系 聚合 管理
      22 Posts :: 0 Stories :: 6 Comments :: 0 Trackbacks
    原文:http://e-docs.bea.com/wls/docs70/webapp/sessions.html#100770

    Using Sessions and Session Persistence in Web Applications

    The following sections describe how to set up sessions and session persistence:

    ?


    Overview of HTTP Sessions

    Session tracking enables you to track a user's progress over multiple servlets or HTML pages, which, by nature, are stateless. A session is defined as a series of related browser requests that come from the same client during a certain time period. Session tracking ties together a series of browser requests—think of these requests as pages—that may have some meaning as a whole, such as a shopping cart application.

    ?


    Setting Up Session Management

    WebLogic Server is set up to handle session tracking by default. You need not set any of these properties to use session tracking. However, configuring how WebLogic Server manages sessions is a key part of tuning your application for best performance. Tuning depends upon factors such as:

    • How many users you expect to hit the servlet

    • How many concurrent users hit the servlet

    • How long each session lasts

    • How much data you expect to store for each user

    • Heap size allocated to the WebLogic Server instance.

    HTTP Session Properties

    You configure WebLogic Server session tracking with properties in the WebLogic-specific deployment descriptor, weblogic.xml. For instructions on editing the WebLogic-specific deployment descriptor, see Step 4: Define session parameters.

    For a complete list of session attributes, see jsp-descriptor.

    WebLogic Server 7.0 introduced a change to the SessionID format that caused some load balancers to lose the ability to retain session stickiness.

    A new server startup flag, -Dweblogic.servlet.useExtendedSessionFormat=true , retains the information that the load-balancing application needs for session stickiness. The extended session ID format will be part of the URL if URL rewriting is activated, and the startup flag is set to true.

    Session Timeout

    You can specify an interval of time after which HTTP sessions expire. When a session expires, all data stored in the session is discarded. You can set the interval in either web.xml or weblogic.xml:

    • Set the TimeoutSecs attribute in thejsp-descriptor of the WebLogic-specific deployment descriptor, weblogic.xml. This value is set in seconds.

    • Set the <session-timeout>(see session-config)element in the Web Application deployment descriptor, web.xml.

    Configuring Session Cookies

    WebLogic Server uses cookies for session management when supported by the client browser.

    The cookies that WebLogic Server uses to track sessions are set as transient by default and do not outlive the session. When a user quits the browser, the cookies are lost and the session lifetime is regarded as over. This behavior is in the spirit of session usage and it is recommended that you use sessions in this way.

    You can configure session-tracking attributes of cookies in the WebLogic-specific deployment descriptor, weblogic.xml. A complete list of session and cookie-related attributes is available jsp-descriptor.

    For instructions on editing the WebLogic-specific deployment descriptor, see Step 4: Define session parameters.

    Using Cookies That Outlive a Session

    For longer-lived client-side user data, your application should create and set its own cookies on the browser via the HTTP servlet API, and should not attempt to use the cookies associated with the HTTP session. Your application might use cookies to auto-login a user from a particular machine, in which case you would set a new cookie to last for a long time. Remember that the cookie can only be sent from that client machine. Your application should store data on the server if it must be accessed by the user from multiple locations.

    You cannot directly connect the age of a browser cookie with the length of a session. If a cookie expires before its associated session, that session becomes orphaned. If a session expires before its associated cookie, the servlet is not be able to find a session. At that point, a new session is assigned when the request.getSession(true) method is called. You should only make transient use of sessions.

    You can set the maximum life of a cookie with the CookieMaxAgeSecs parameter in the session descriptor of the weblogic.xml deployment descriptor. For more information, see Step 4: Define session parameters

    Logging Out and Ending a Session

    User authentication information is stored both in the user's session data and in the context of a server or virtual host that is targeted by a Web Application. The session.invalidate() method, which is often used to log out a user, only invalidates the current session for a user—the user's authentication information still remains valid and is stored in the context of the server or virtual host. If the server or virtual host is hosting only one Web Application, the session.invalidate() method, in effect, logs out the user.

    There are several Java methods and strategies you can use when using authentication with multiple Web Applications. For more information, see Implementing Single Sign-On in the Programming WebLogic HTTP Servlets,.

    ?


    Configuring Session Persistence

    Use Session Persistence to permanently stored data from an HTTP session object in order to enable failover and load balancing across a cluster of WebLogic Servers. When your applications stores data in an HTTP session object, the data must be serializable.

    There are five different implementations of session persistence:

    • Memory (single-server, non-replicated)

    • File system persistence

    • JDBC persistence

    • Cookie-based session persistence

    • In-memory replication (across a cluster)

    The first four are discussed here; in-memory replication is discussed in in Using WebLogic Server Clusters.

    File, JDBC, Cookie-based, and memory (single-server, non-populated) session persistence have some common properties. Each persistence method has its own set of attributes, as discussed in the following sections.

    Common Properties of Session Attributes

    This section describes attributes common to file system, memory (single-server, non-replicated), JDBC, and cookie-based persistence. You can configure the number of sessions that are held in memory by setting the following properties in the <session-descriptor> element of the WebLogic-specific deployment descriptor, weblogic.xml. These properties are only applicable if you are using session persistence:

    CacheSize

    Limits the number of cached sessions that can be active in memory at any one time. If you are expecting high volumes of simultaneous active sessions, you do not want these sessions to soak up the RAM of your server since this may cause performance problems swapping to and from virtual memory. When the cache is full, the least recently used sessions are stored in the persistent store and recalled automatically when required. If you do not use persistence, this property is ignored, and there is no soft limit to the number of sessions allowed in main memory. By default, the number of cached sessions is 1024. The minimum is 16, and maximum is Integer.MAX_VALUE. An empty session uses less than 100 bytes, but grows as data is added to it.

    SwapIntervalSecs

    The interval the server waits between purging the least recently used sessions from the cache to the persistent store, when the cacheEntries limit has been reached.

    If unset, this property defaults to 10 seconds; minimum is 1 second, and maximum is 604800 (1 week).

    InvalidationIntervalSecs

    Sets the time, in seconds, that WebLogic Server waits between doing house-cleaning checks for timed-out and invalid sessions, and deleting the old sessions and freeing up memory. Set this parameter to a value less than the value set for the <session-timeout> element. Use this parameter to tune WebLogic Server for best performance on high traffic sites.

    The minimum value is every second (1). The maximum value is once a week (604,800 seconds). If unset, the parameter defaults to 60 seconds.

    To set <session-timeout>, see the session-config of the Web Application deployment descriptor web.xml.

    Using Memory-based, Single-server, Non-replicated Persistent Storage

    To use memory-based, single-server, non-replicated persistent storage, set the PersistentStoreType property in the <session-descriptor> element of the WebLogic-specific deployment descriptor, weblogic.xml to memory. When you use memory-based storage, all session information is stored in memory and is lost when you stop and restart WebLogic Server.

    Note: If you do not allocate sufficient heap size when running WebLogic Server, your server may run out of memory under heavy load.

    Using File-based Persistent Storage

    To configure file-based persistent storage for sessions:

    1. Set the PersistentStoreType property in the <session-descriptor> element in the deployment descriptor file weblogic.xml to file.
    2. Set the directory where WebLogic Server stores the sessions. See PersistentStoreDir.

      If you do not explicitly set a value for this attribute, a temporary directory is created for you by WebLogic Server.

      If you are using file-based persistence in a cluster, you must explicitly set this attribute to a shared directory that is accessible to all the servers in a cluster. You must create this directory yourself.

    Using a Database for Persistent Storage (JDBC persistence)

    JDBC persistence stores session data in a database table using a schema provided for this purpose. You can use any database for which you have a JDBC driver. You configure database access by using connection pools.

    To configure JDBC-based persistent storage for sessions:

    1. Set the PersistentStoreType property in the <session-descriptor> element of the WebLogic-specific deployment descriptor, weblogic.xml, to jdbc.
    2. Set a JDBC connection pool to be used for persistence storage with the PersistentStorePool property of the WebLogic-specific deployment descriptor, weblogic.xml. Use the name of a connection pool that is defined in the WebLogic Server Administration Console.

      For more details on setting up a database connection pool, see Managing JDBC Connectivity.

    3. Set an ACL for the connection that corresponds to the users that have permission. For more details on setting up a database connection, see Managing JDBC Connectivity.
    4. Set up a database table named wl_servlet_sessions for JDBC-based persistence. The connection pool that connects to the database needs to have read/write access for this table. The following table shows the Column names and data types you should use when creating this table.

    Column name

    Type

    wl_id

    Variable-width alphanumeric column, up to 100 characters; for example, Oracle VARCHAR2(100).
    The primary key must be set as follows:

    wl_id + wl_context_path.

    wl_context_path

    Variable-width alphanumeric column, up to 100 characters; for example, Oracle VARCHAR2(100). This column is used as part of the primary key. (See the wl_idcolumn description.)

    wl_is_new

    Single char column; for example, Oracle CHAR(1)

    wl_create_time

    Numeric column, 20 digits; for example, Oracle NUMBER(20)

    wl_is_valid

    Single char column; for example, Oracle CHAR(1)

    wl_session_values

    Large binary column; for example, Oracle LONG RAW

    wl_access_time

    Numeric column, 20 digits; for example, NUMBER(20)

    wl_max_inactive_interval

    Integer column; for example, Oracle Integer. Number of seconds between client requests before the session is invalidated. A negative time value indicates that the session should never timeout.

    If you are using an Oracle DBMS, use the following SQL statement to create the wl_servlet_sessions table:

    create table wl_servlet_sessions
    ( wl_id VARCHAR2(100) NOT NULL,
    wl_context_path VARCHAR2(100) NOT NULL,
    wl_is_new CHAR(1),
    wl_create_time NUMBER(20),
    wl_is_valid CHAR(1),
    wl_session_values LONG RAW,
    wl_access_time NUMBER(20),
    wl_max_inactive_interval INTEGER,
    PRIMARY KEY (wl_id, wl_context_path) );

    If you are using SqlServer2000, use the following SQL statement to create the wl_servlet_sessions table:

    create table wl_servlet_sessions
    ( wl_id VARCHAR2(100) NOT NULL,
    wl_context_path VARCHAR2(100) NOT NULL,
    wl_is_new VARCHAR(1),
    wl_create_time DeCIMAL,
    wl_is_valid VARCHAR(1),
    wl_session_values IMAGE,
    wl_access_time DECIMAL,
    wl_max_inactive_interval INTEGER,
    PRIMARY KEY (wl_id, wl_context_path) );

    Modify one of the preceeding SQL statements for use with your DBMS.

    Note: You can configure a maximum duration that JDBC session persistence should wait for a JDBC connection from the connection pool before failing to load the session data with the JDBCConnectionTimeoutSecs attribute. For more information, see JDBCConnectionTimeoutSecs.

    Using Cookie-Based Session Persistence

    Cookie-based session persistence provides a stateless solution for session persistence by storing all session data in a cookie that is stored in the user's browser. Cookie-based session persistence is most useful when you do not need to store large amounts of data in the session. Cookie-based session persistence can make managing your WebLogic Server installation easier because clustering failover logic is not required. Because the session is stored in the browser, not on the server, you can start and stop WebLogic Servers without losing sessions.

    There are some limitations to cookie-based session persistence:

    • You can store only string attributes in the session. If you store any other type of object in the session, an IllegalArgument exception is thrown.

    • You cannot flush the HTTP response (because the cookie must be written to the header data before the response is committed).

    • If the content length of the response exceeds the buffer size, the response is automatically flushed and the session data cannot be updated in the cookie. (The buffer size is, by default, 8192 bytes. You can change the buffer size with the javax.servlet.ServletResponse.setBufferSize() method.

    • You can only use basic (browser-based) authentication.

    • Session data is sent to the browser in clear text.

    • The user's browser must be configured to accept cookies.

    • You cannot use commas (,) in a string when using cookie-based session persistence or an exception occurs.

    To set up cookie-based session persistence:

    1. In the <session-descriptor> element of weblogic.xml, set the PersistentStoreType parameter to cookie.
    2. Optionally, set a name for the cookie using the PersistentStoreCookieName parameter. The default is WLCOOKIE.

    ?


    Using URL Rewriting

    In some situations, a browser or wireless device may not accept cookies, which makes session tracking using cookies impossible. URL rewriting is a solution to this situation that can be substituted automatically when WebLogic Server detects that the browser does not accept cookies. URL rewriting involves encoding the session ID into the hyper-links on the Web pages that your servlet sends back to the browser. When the user subsequently clicks these links, WebLogic Server extracts the ID from the URL address and finds the appropriate HttpSession when your servlet calls the getSession() method.

    Enable URL rewriting in WebLogic Server by setting the URLRewritingEnabled attribute in the WebLogic-specific deployment descriptor, weblogic.xml, under the <session-descriptor> element.The default value for this attribute is true. See URLRewritingEnabled.

    Coding Guidelines for URL Rewriting

    There are some general guidelines for how your code should handle URLs in order to support URL rewriting.

    • Avoid writing a URL straight to the output stream, as shown here:
      out.println("<a href=\"/myshop/catalog.jsp\">catalog</a>");

      Instead, use the HttpServletResponse.encodeURL() method, for example:

      out.println("<a href=\""
      + response.encodeURL("myshop/catalog.jsp")
      + "\">catalog</a>");

      Calling the encodeURL() method determines if the URL needs to be rewritten, and if so, it rewrites it by including the session ID in the URL. The session ID is appended to the URL and begins with a semicolon.

    • In addition to URLs that are returned as a response to WebLogic Server, also encode URLs that send redirects. For example:
      if (session.isNew())
      ??response.sendRedirect (response.encodeRedirectUrl(welcomeURL));

      WebLogic Server uses URL rewriting when a session is new, even if the browser does accept cookies, because the server cannot tell whether a browser accepts cookies in the first visit of a session.

    • Your servlet can determine whether a given session ID was received from a cookie by checking the Boolean returned from the HttpServletRequest.isRequestedSessionIdFromCookie() method. Your application may respond appropriately, or simply rely on URL rewriting by WebLogic Server.

    URL Rewriting and Wireless Access Protocol (WAP)

    If you are writing a WAP application, you must use URL rewriting because the WAP protocol does not support cookies. In addition, some WAP devices have a 128-character limit on the length of a URL (including parameters), which limits the amount of data that can be transmitted using URL rewriting. To allow more space for parameters, you can limit the size of the session ID that is randomly generated by WebLogic Server. See IDLength.

    posted on 2006-05-09 20:27 wadise 閱讀(840) 評論(0)  編輯  收藏 所屬分類: Java
    主站蜘蛛池模板: 亚洲AV综合色区无码另类小说| 亚洲成a人片在线观看久| 亚洲欧洲精品国产区| 性xxxx视频免费播放直播| 亚洲AV无码专区电影在线观看| 91在线免费视频| 亚洲动漫精品无码av天堂| 久久久久久久国产免费看| 亚洲乳大丰满中文字幕| 成年大片免费视频| 亚洲色大成网站www久久九| 日本人护士免费xxxx视频| 黄色免费在线观看网址| 亚洲无码精品浪潮| 东方aⅴ免费观看久久av| 久久精品国产亚洲AV麻豆王友容 | 亚洲AV无码一区东京热| 抽搐一进一出gif免费视频| 亚洲精品成人无限看| 99在线热视频只有精品免费| 亚洲字幕在线观看| 四虎免费在线观看| 日韩精品视频在线观看免费| 亚洲αv久久久噜噜噜噜噜| 久久精品国产免费观看三人同眠| 亚洲日本久久一区二区va| 全部免费国产潢色一级| a级在线免费观看| 亚洲人成网网址在线看| 国产免费一区二区三区VR| AAAAA级少妇高潮大片免费看| 亚洲视频一区在线播放| 日本免费v片一二三区| 13小箩利洗澡无码视频网站免费| 亚洲美免无码中文字幕在线| 免费无码黄网站在线观看| 精品国产污污免费网站入口 | 免费一级毛片女人图片| 鲁丝片一区二区三区免费 | 久久久久免费看黄A片APP | 另类小说亚洲色图|