Pages enfant
  • Manuel Installation - Esup-CIL

Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

Bloc de code
<Resource name="jdbc/Cil"

	auth="Container"

	type="javax.sql.DataSource"

	factory="org.apache.commons.dbcp.BasicDataSourceFactory"

	url="jdbc:postgresql://localhost:5432/cil"

	driverClassName="org.postgresql.Driver"

	username="username"

	password="webupasswdvhc"

	maxWait="10000"

	maxIdle="30"

	maxActive="100"/>
  • domain/domain.xml

Bloc de code

<bean
		id="domainService"
		class="org.esupportail.cnil.domain.DomainServiceImpl"
		>
		<property name="daoService" ref="daoService" />
		<property name="ldapUserService" ref="ldapUserService" />
		<property name="displayNameLdapAttribute" value="displayName" />
		<property name="portalService" ref="portalService" />
		<property name="uploadDirectory" value="/var/www/fileUploadCil">
			<description>
				The directory where uploaded files are stored.
			</description>
		</property>
		<property name="uploadUrl" value="http://localhost/fileUploadCil" >
			<description>
				The URL where you can download files.
			</description>
		</property>
		<property name="groupService" ref="groupService"/>

		<property name="mailCil" value="cil@univ-valenciennes.fr">
			<description>
				the generic mail for the cil.
			</description>
		</property>

	</bean>
  • init/init.xml


Mettre à jour la propriété :

...