additions to example.deploy.properties

This commit is contained in:
bjl23 2011-01-07 21:18:13 +00:00
parent 7edc978038
commit 651808da50
2 changed files with 33 additions and 2 deletions

View file

@ -61,17 +61,39 @@ LuceneSetup.indexDir = /usr/local/vivo/data/luceneIndex
Vitro.smtpHost =
#
# The basic parameters for a MySQL database connection. Change the end of the
# The basic parameters for a database connection. Change the end of the
# URL to reflect your database name (if it is not "vitro"). Change the username
# and password to match the authorized user you created in MySQL. Increase the
# and password to match the authorized database user you created. Increase the
# maximum size of the database connection pool if you need to serve a greater
# number of concurrent page requests.
#
VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
VitroConnection.DataSource.username = vitrodbUsername
VitroConnection.DataSource.password = vitrodbPassword
#
# Parameters to change in order to use VIVO with a database other than
# MySQL.
#
VitroConnection.DataSource.dbtype = MySQL
VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
VitroConnection.DataSource.validationQuery = SELECT 1
#
# The maximum size of the database connection pool. Increase this
# value to support a greater number of concurrent page requests
# with SDB. It is not necessary to adjust this value when using the
# RDB configuration.
#
VitroConnection.DataSource.pool.maxActive = 320
#
# The Jena triple store technology to use. SDB is Jena's SPARQL database;
# this setting allows RDF data to scale beyond the limits of the JVM heap.
# Set to RDB to use the older Jena RDB store with in-memory caching.
#
VitroConnection.DataSource.tripleStoreType = SDB
#
# The name of your first admin user for the VIVO application. The password for
# for this user is initially set to "defaultAdmin", but you will be asked to

View file

@ -339,6 +339,15 @@
<servlet-name>IndexController</servlet-name>
<url-pattern>/SearchIndex</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>SimpleReasonerRecomputeController</servlet-name>
<servlet-class>edu.cornell.mannlib.vitro.webapp.controller.freemarker.SimpleReasonerRecomputeController</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>SimpleReasonerRecomputeController</servlet-name>
<url-pattern>/InferenceRecompute</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>MenuN3EditController</servlet-name>