Web Application with Simple DB Editing Features
- Spring - Web framework
- Maven - Dependency Managem ent
- Apache Tiles - View framework
- ax5ui-grid - UI drawing table grids
- Java SE Development Kit
- Database is necessary of course
- Select import option Check out Maven projects from SCM
- If required, install m2e-egit SCM Connector
- Confirm import with option git and URL https://github.com/crosstreet74/db-web-tooling
- On termainal, clone git repo like
git clone https://github.com/crosstreet74/db-web-tooling - Import cloned directory with Existing Maven Project option
Some Maven Dependency on pom.xml should be replaced with proper JDBC Driver for your Databse.
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>1.6.5</version>
</dependency>
And either make some changes on context-datasource.xml fit to your database information.
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="org.mariadb.jdbc.Driver"/>
<property name="url" value="jdbc:mariadb://localhost:8210"/>
<property name="username" value="user"/>
<property name="password" value="password"/>
</bean>
Now Run on Server the project!