https://issues.apache.org/bugzilla/show_bug.cgi?id=57147

            Bug ID: 57147
           Summary: Fixes to JDBC Based Store Documentation
           Product: Tomcat 8
           Version: 8.0.12
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Documentation
          Assignee: dev@tomcat.apache.org
          Reporter: fernando.ribe...@upic.com.br

There are some fixes to make in the documentation of the JDBC-based store [1]:

1- The connectionName and connectionPassword parameters are missing

2- The sessionAppCol, sessionDataCol, sessionIdCol, sessionLastAccessedCol,
sessionMaxInactiveCol, sessionTable and sessionValidCol parameters, which are
optional, seem to be marked as required

3- The DDL for the sessions table doesn't match the defaults in the JDBCStore
class [2]:

CREATE TABLE tomcat$sessions (
  id VARCHAR(100) NOT NULL PRIMARY KEY,
  app VARCHAR(255),
  data MEDIUMBLOB,
  lastaccess BIGINT NOT NULL,
  maxinactive INT NOT NULL,
  valid CHAR(1) NOT NULL
);

[1] http://tomcat.apache.org/tomcat-8.0-doc/config/manager.html
[2]
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/session/JDBCStore.java

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to