Skip to content

Deployment Structure

csupnig edited this page Mar 13, 2013 · 2 revisions

Details

Webapp

/webapps// /webapps/<CCWebapp.war>

CCWebapp

/WEB-INF/web.xml

contains the config for search- and indexerservlet

indexerconfig example Gentics .Node ContentConnector Indexer Application indexer

  <servlet-name>indexer</servlet-name>
  <servlet-class>com.gentics.cr.lucene.IndexJobServlet</servlet-class>
  <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
  <servlet-name>indexer</servlet-name>
  <url-pattern>/indexer/*</url-pattern>
</servlet-mapping>

searchconfig example search com.gentics.cr.rest.RESTServlet 1

<servlet-mapping>
  <servlet-name>search</servlet-name>
  <url-pattern>/search/*</url-pattern>
</servlet-mapping>

/WEB-INF/lib/

contains Lucene Libs, Transformator Libs and CC Libs

Config

/conf/gentics/rest/ indexer.properties, analyzer.properties and search.properties

/conf/gentics/nodelog.properties /conf/gentics/cache.ccf

Indexer Files

Directory for the indexerfiles (configured in indexer.properties)

Clone this wiki locally