Compare commits

...

2 Commits

Author SHA1 Message Date
Sambo Chea 512f4b6408 updated myself 2020-04-30 16:19:38 +07:00
Sambo Chea 7cb5d09edf updated 2020-04-30 16:17:42 +07:00
3 changed files with 11 additions and 10 deletions

View File

@ -50,10 +50,11 @@
<artifactId>thymeleaf-layout-dialect</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<!-- https://mvnrepository.com/artifact/postgresql/postgresql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa -->

View File

@ -1,14 +1,13 @@
package com.chantha.springdemo.model;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.*;
@Entity
@Table(name="tbfood")
public class Food {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
public Food() {
super();

View File

@ -1,7 +1,8 @@
spring.thymeleaf.cache=false
spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3309/dbfood?createDatabaseIfNotExist=true&allowPublicKeyRetrieval=true&useSSL=false
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.url=jdbc:postgresql://localhost:5432/dbfoof
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.jpa.open-in-view=true
server.servlet.session.tracking-modes=cookie
server.port=8010
server.servlet.session.tracking-modes=cookie