Skip to content
Snippets Groups Projects
Commit 56c76719 authored by Mic's avatar Mic
Browse files

webapp now using JPA by default

parent 8b6cfab2
No related branches found
No related tags found
No related merge requests found
......@@ -17,10 +17,11 @@
<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>jdbc</param-value>
<param-value>jpa</param-value>
<!-- you can replace the above param with:
<param-value>jpa,plain-jpa</param-value> (in the case of plain JPA)
<param-value>jpa,spring-data</param-value> (in the case of Spring Data JPA)
<param-value>jdbc</param-value>
<param-value>jpa</param-value> (in the case of plain JPA)
<param-value>spring-data-jpa</param-value> (in the case of Spring Data JPA)
-->
</context-param>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment