...
Code Block | ||
---|---|---|
| ||
server.home=C:/path/to/your/tomcat/install |
- pom.xml (Only for Microsoft SQL using the Microsoft jdbc driver)
JDBC driver for SSP-Platform
Warning The pom.xml should only be changed with extreme care. This is only required for Microsoft SQL Server installations not using the default JTDS jdbc driver packaged with SSP-Platform. The parameter defines the location of the driver in the local repository.
- File Location:
<platform-src-dir>/pom.xml
Configuration Values: parameters
Action: modify the - The ssp-platform-config.properties file must be modifed for database connectivity and email settings
- Original File Location: ./uportal-war/src/main/resources/properties/ssp-platform-config.default.properties
- Edit the file and save in the SSP_CONFIGDIR
- Run-Time File Location: <SSP_CONFIGDIR>/ssp-platform-config.properties
Configuration Values:
jdbc.*
parameters to refer to the JTDS driver instead of the PostgreSQL driver:Code Block | ||
---|---|---|
| ||
<!-- The JDBC Driver used by SSP -->
<jdbc.groupId> </jdbc.groupId>
<jdbc.artifactId> </jdbc.artifactId>
<jdbc.version> </jdbc.version> |
Value | Description |
---|---|
environment.build.hibernate.connection.driver_class | jdbc driver file For best results with SQL Server, the JTDS driver included with the Platform installation is recommended. |
environment.build.hibernate.connection.url | jdbc connection syntax For best results with SQL Server, the JTDS driver included with the Platform installation is recommended. |
environment.build.hibernate.connection.username | jdbc connection database username |
environment.build.hibernate.connection.password | jdbc connection database password |
environment.build.hibernate.dialect | jdbc connection dialect For best results with SQL Server, the JTDS driver included with the Platform installation is recommended. |
...