Initial commit
This commit is contained in:
BIN
Psalmenweb/target/classes/C.psd
Normal file
BIN
Psalmenweb/target/classes/C.psd
Normal file
Binary file not shown.
15
Psalmenweb/target/classes/hibernate.cfg.xml
Normal file
15
Psalmenweb/target/classes/hibernate.cfg.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE hibernate-configuration PUBLIC
|
||||
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
||||
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
|
||||
<hibernate-configuration>
|
||||
<session-factory>
|
||||
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
|
||||
<property name="hibernate.connection.driver_class">com.mysql.cj.jdbc.Driver</property>
|
||||
<property name="hibernate.connection.url">jdbc:mysql://37.97.221.166:3306/psalmenweb?characterEncoding=utf8&useUnicode=true</property>
|
||||
<property name="hibernate.connection.username">psalmenweb</property>
|
||||
<property name="hibernate.connection.password">OhWSsRxCOM4pXiiQ</property>
|
||||
<property name="hibernate.dialect">org.hibernate.dialect.MySQL8Dialect</property>
|
||||
<property name="show_sql">true</property>
|
||||
</session-factory>
|
||||
</hibernate-configuration>
|
||||
41
Psalmenweb/target/classes/log4j.xml
Normal file
41
Psalmenweb/target/classes/log4j.xml
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd">
|
||||
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
|
||||
|
||||
<!-- Appenders -->
|
||||
<appender name="console" class="org.apache.log4j.ConsoleAppender">
|
||||
<param name="Target" value="System.out" />
|
||||
<layout class="org.apache.log4j.PatternLayout">
|
||||
<param name="ConversionPattern" value="%-5p: %c - %m%n" />
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
<!-- Application Loggers -->
|
||||
<logger name="org.tenvoorde.psalmenweb">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<!-- 3rdparty Loggers -->
|
||||
<logger name="org.springframework.core">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<logger name="org.springframework.beans">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<logger name="org.springframework.context">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<logger name="org.springframework.web">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<!-- Root Logger -->
|
||||
<root>
|
||||
<priority value="warn" />
|
||||
<appender-ref ref="console" />
|
||||
</root>
|
||||
|
||||
</log4j:configuration>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5
Psalmenweb/target/maven-archiver/pom.properties
Normal file
5
Psalmenweb/target/maven-archiver/pom.properties
Normal file
@@ -0,0 +1,5 @@
|
||||
#Generated by Maven
|
||||
#Mon Jan 04 22:26:13 CET 2021
|
||||
groupId=org.tenvoorde
|
||||
artifactId=psalmenweb
|
||||
version=1.0.0-BUILD-SNAPSHOT
|
||||
@@ -0,0 +1,14 @@
|
||||
org\tenvoorde\psalmenweb\controllers\CatechismusController.class
|
||||
org\tenvoorde\psalmenweb\controllers\HomeController.class
|
||||
org\tenvoorde\psalmenweb\dao\PsalmenDAO.class
|
||||
org\tenvoorde\psalmenweb\CatechismusParser.class
|
||||
org\tenvoorde\psalmenweb\dao\CatechismusDAO.class
|
||||
org\tenvoorde\psalmenweb\domain\Vertaling.class
|
||||
org\tenvoorde\psalmenweb\dao\BijbelDAO.class
|
||||
org\tenvoorde\psalmenweb\controllers\BijbelController.class
|
||||
org\tenvoorde\psalmenweb\controllers\PsalmenController.class
|
||||
org\tenvoorde\psalmenweb\domain\BijbelBoek.class
|
||||
org\tenvoorde\psalmenweb\domain\CatechismusVraag.class
|
||||
org\tenvoorde\psalmenweb\domain\Psalmregel.class
|
||||
org\tenvoorde\psalmenweb\domain\Bijbelvers.class
|
||||
org\tenvoorde\psalmenweb\PsalmboekParser.class
|
||||
@@ -0,0 +1,14 @@
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\dao\PsalmenDAO.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\PsalmboekParser.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\CatechismusParser.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\domain\CatechismusVraag.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\controllers\PsalmenController.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\dao\BijbelDAO.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\controllers\BijbelController.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\dao\CatechismusDAO.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\domain\Psalmregel.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\domain\Bijbelvers.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\domain\Vertaling.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\controllers\HomeController.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\domain\BijbelBoek.java
|
||||
D:\Development\src\psalmenweb\Psalmenweb\src\main\java\org\tenvoorde\psalmenweb\controllers\CatechismusController.java
|
||||
BIN
Psalmenweb/target/psalmenweb-1.0.0-BUILD-SNAPSHOT.war
Normal file
BIN
Psalmenweb/target/psalmenweb-1.0.0-BUILD-SNAPSHOT.war
Normal file
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
Manifest-Version: 1.0
|
||||
Created-By: IntelliJ IDEA
|
||||
Built-By: Michel
|
||||
Build-Jdk: 11.0.9
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE hibernate-configuration PUBLIC
|
||||
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
||||
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
|
||||
<hibernate-configuration>
|
||||
<session-factory>
|
||||
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
|
||||
<property name="hibernate.connection.driver_class">com.mysql.cj.jdbc.Driver</property>
|
||||
<property name="hibernate.connection.url">jdbc:mysql://37.97.221.166:3306/psalmenweb?characterEncoding=utf8&useUnicode=true</property>
|
||||
<property name="hibernate.connection.username">psalmenweb</property>
|
||||
<property name="hibernate.connection.password">OhWSsRxCOM4pXiiQ</property>
|
||||
<property name="hibernate.dialect">org.hibernate.dialect.MySQL8Dialect</property>
|
||||
<property name="show_sql">true</property>
|
||||
</session-factory>
|
||||
</hibernate-configuration>
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd">
|
||||
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
|
||||
|
||||
<!-- Appenders -->
|
||||
<appender name="console" class="org.apache.log4j.ConsoleAppender">
|
||||
<param name="Target" value="System.out" />
|
||||
<layout class="org.apache.log4j.PatternLayout">
|
||||
<param name="ConversionPattern" value="%-5p: %c - %m%n" />
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
<!-- Application Loggers -->
|
||||
<logger name="org.tenvoorde.psalmenweb">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<!-- 3rdparty Loggers -->
|
||||
<logger name="org.springframework.core">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<logger name="org.springframework.beans">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<logger name="org.springframework.context">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<logger name="org.springframework.web">
|
||||
<level value="info" />
|
||||
</logger>
|
||||
|
||||
<!-- Root Logger -->
|
||||
<root>
|
||||
<priority value="warn" />
|
||||
<appender-ref ref="console" />
|
||||
</root>
|
||||
|
||||
</log4j:configuration>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
################### JDBC Configuration ##########################
|
||||
jdbc.driverClassName=com.mysql.jdbc.Driver
|
||||
jdbc.url=jdbc:mysql://tenvoorde.org:3306/psalmenweb
|
||||
jdbc.username=psalmenonline
|
||||
jdbc.password=zMhMipovKFgc1m8n
|
||||
|
||||
################### Hibernate Configuration ##########################
|
||||
hibernate.dialect=org.hibernate.dialect.MySQLDialect
|
||||
hibernate.show_sql=true
|
||||
hibernate.hbm2ddl.auto=update
|
||||
hibernate.generate_statistics=true
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user