https://github.com/sidmishraw/basicdal
A very simple example of a REST application with JPA (H2 DB) using SpringBoot starters.
https://github.com/sidmishraw/basicdal
spring-boot spring-boot-jpa spring-boot-web spring-web spring-web-jpa-example
Last synced: 3 months ago
JSON representation
A very simple example of a REST application with JPA (H2 DB) using SpringBoot starters.
- Host: GitHub
- URL: https://github.com/sidmishraw/basicdal
- Owner: sidmishraw
- License: bsd-3-clause
- Created: 2018-02-26T23:11:25.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-26T23:12:28.000Z (about 7 years ago)
- Last Synced: 2025-01-15T06:48:45.681Z (4 months ago)
- Topics: spring-boot, spring-boot-jpa, spring-boot-web, spring-web, spring-web-jpa-example
- Language: Java
- Size: 55.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BasicDAL
BasicDAL is a sample project using Spring Boot's JPA starter code and H2 DB engine.
## References:
[1] Spring Docs, "Repository and query methods": https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#repositories.query-methods
[2] Spring Boot Docs, "JPA starter": https://spring.io/guides/gs/accessing-data-jpa/
[3] Spring Boot Docs, "Configuring SpringBoot application using external properties": https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html
[4] Hibernate configuration docs: https://docs.jboss.org/hibernate/orm/5.0/manual/en-US/html/ch03.html#configuration-optional
[5] Jackson JSON library Javadocs: http://fasterxml.github.io/jackson-annotations/javadoc/2.9/
[6] Jackson usage tutorial from Mykong: http://www.mkyong.com/java/how-to-convert-java-object-to-from-json-jackson/