19. Run Application (#1)

This commit is contained in:
Art
2021-09-04 11:17:11 +03:00
parent f14095c425
commit e83540de09
4 changed files with 92 additions and 5 deletions

View File

@ -1,9 +1,6 @@
package net.shyshkin.study.fullstack.supportportal.backend.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.*;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
@ -18,6 +15,7 @@ import java.time.LocalDateTime;
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(onlyExplicitlyIncluded = true)
@Builder
public class User implements Serializable {
private static final long serialVersionUID = -4372214856545239049L;

View File

@ -19,4 +19,7 @@ spring:
datasource:
url: jdbc:mysql://localhost:23306/support-portal
jpa:
show-sql: true
show-sql: true
logging:
level:
net.shyshkin: debug