Skip to content

greptail/spring-data-oracle-nosql-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Preparation

Clone this repository

Setup dependencies

see pom.xml

Review the code

How to run the code

Note: test.serverType and test.endpoint default values are onprem and http://localhost:8080. These can be modified in AppConfigBase.java lines 43 and 44.

Using maven

Running the App code:

mvn compile exec:java -Dexec.mainClass="com.example.App" -Dtest.serverType=onprem -Dtest.endpoint=http://localhost:8080 

Running the test code:

mvn test -Dtest.serverType=onprem -Dtest.endpoint=http://localhost:8080

Directly using java

Running the App code directly using java command.

mvn clean package -Dmaven.test.skip
CP=`mvn dependency:build-classpath -Dmdep.outputFile=/dev/stdout -q`
java -cp $CP:./target/spring-data-test-1.0-SNAPSHOT.jar -Dtest.serverType=onprem -Dtest.endpoint=http://localhost:8080  com.example.App 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages