Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 2.6 KB

File metadata and controls

63 lines (45 loc) · 2.6 KB

db-web-tooling

HitCount contributions welcome FOSSA Status

What is this?

Web Application with Simple DB Editing Features

Built With

Deployment

Required Steps to Checkout

Checkout by Eclipse Connector

  1. Select import option Check out Maven projects from SCM
  2. If required, install m2e-egit SCM Connector
  3. Confirm import with option git and URL https://github.com/crosstreet74/db-web-tooling

Checkout by Cloning

  1. On termainal, clone git repo like git clone https://github.com/crosstreet74/db-web-tooling
  2. Import cloned directory with Existing Maven Project option

Before Deployment

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!

License

FOSSA Status

Contributors