This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Christian edited this page Nov 20, 2013
·
5 revisions
Welcome to the DavDataBaseArchiv wiki!
Neben den allgemein gebräuchlichen Startparametern für Datenverteiler Applikationen werden folgende Starparameter verwendet:
-
javax.persistence.jdbc.driver
- der JDBC DriverManager Klassenname -
javax.persistence.jdbc.url
- die JDBC/Datenbank URL -
javax.persistence.jdbc.user
- der Datenbank Nutzername (Default "test") -
javax.persistence.jdbc.password
- das Datenbank Passwort (Default leerer String)
##Beispiel für die Verwendung mit einer MySQL Datenbank unter Windows
Die Datenbank "davArchiv" muß bereits angelegt sein (ohne irgendwelche Relationen)
@echo off
title Archivsystem
rem Allgemeine Einstellungen laden.
set classpath=../distributionspakete/de.bsvrz.dav.daf/de.bsvrz.dav.daf-runtime.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.sys.funclib.commandLineArgs/de.bsvrz.sys.funclib.commandLineArgs-runtime.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.sys.funclib.communicationStreams/de.bsvrz.sys.funclib.communicationStreams-runtime.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.sys.funclib.dataIdentificationSettings/de.bsvrz.sys.funclib.dataIdentificationSettings-runtime.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.sys.funclib.dataSerializer/de.bsvrz.sys.funclib.dataSerializer-runtime.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.sys.funclib.debug/de.bsvrz.sys.funclib.debug-runtime.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.dav.dav/de.bsvrz.dav.dav-runtime.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.ars.ars/de.hoesel.dav.ars-0.0.4.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.ars.ars/javax.persistence-2.1.0.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.ars.ars/eclipselink-2.5.0.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.ars.ars/commonj.sdo-2.1.1.jar
set classpath=%classpath%;../distributionspakete/de.bsvrz.ars.ars/mysql-connector-java-5.1.25-bin.jar
rem Applikation starten
java -Xmx512m -cp %classpath% de.hoesel.dav.ars.Archiv ^
-datenverteiler=localhost:8083 -benutzer=Tester -authentifizierung=../properties/passwd ^
javax.persistence.jdbc.driver=com.mysql.jdbc.Driver ^
javax.persistence.jdbc.url=jdbc:mysql://localhost:3306/davArchiv ^
javax.persistence.jdbc.user=root ^
javax.persistence.jdbc.password=root ^
-debugLevelStdErrText=INFO ^
-debugLevelFileText=CONFIG
rem Nach dem Beenden warten, damit Meldungen gelesen werden können
pause
exit