diff --git a/example.deploy.properties b/example.deploy.properties index 891e2a0a..5e87b829 100644 --- a/example.deploy.properties +++ b/example.deploy.properties @@ -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 diff --git a/productMods/WEB-INF/web.xml b/productMods/WEB-INF/web.xml index a479ac6f..33375003 100644 --- a/productMods/WEB-INF/web.xml +++ b/productMods/WEB-INF/web.xml @@ -339,6 +339,15 @@ IndexController /SearchIndex + + + SimpleReasonerRecomputeController + edu.cornell.mannlib.vitro.webapp.controller.freemarker.SimpleReasonerRecomputeController + + + SimpleReasonerRecomputeController + /InferenceRecompute + MenuN3EditController