Trace: • Manual Menu Definition • Using DBSecurityManager • Replace JVx' standard Application With ProjX • REST API Filter • Database Connection via JNDI • Change Predefined Custom Object Names • User-Defined Session Manager and Object Provider
The standard JVx server implementation uses the classes DefaultObjectProvider and DefaultSessionManager for the object and session administration. To change the default settings, the server configuration can be modified via config.xml.
User-defined classes can be integrated using the following:
<server> ... ... <sessionmanager>com.app.server.AnotherSessionManager</sessionmanager> <objectprovider>com.app.server.AnotherObjectProvider</objectprovider> <server>
Note
At a minimum, the object provider has to correspond to the class AbstractObjectProvider, and the session manager has to correspond to the class DefaultSessionManager.