Skip to content

Spring Boot Application with Embeded PostgreSQL database, XML to JSON file converter, Merge Sort. Run db script after initialization.

Notifications You must be signed in to change notification settings

skpk24/springboot_embeded_postgresql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

PostgreSQL integration guide.

https://dzone.com/articles/spring-boot-with-embedded-postgresql-for-dao-integ

in DbConfig

Instead of using
private static final List<String> DEFAULT_ADDITIONAL_INIT_DB_PARAMS = Arrays

.asList("--nosync", "--locale=en_US.UTF-8");

Use : private static final List DEFAULT_ADDITIONAL_INIT_DB_PARAMS = Arrays .asList("--nosync", "--locale=en_US");

Instruction to run the application.

  • Download and unzip the file (make sure java 8+ and maven installed in system)

  • Open Command prompt and Run $ mvn clean install && mvn spring-boot:run

  • Access the urls

  • To run the Problem3, you can use the IDE or I have created one more file Problem4.java, just compile and run.

  • $javac Problem4.java && java Problem4

Note : $ is to indicate the command prompt.

About

Spring Boot Application with Embeded PostgreSQL database, XML to JSON file converter, Merge Sort. Run db script after initialization.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages