Skip to content

Commit

Permalink
#16 [update] 유저 업장 등록
Browse files Browse the repository at this point in the history
작동 하는 지 확인 완료
  • Loading branch information
Anna-Jin committed Jul 11, 2022
1 parent 3ad962a commit 7fd832c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ dependencies {
//JSON 변환을 위한 Jackson Library
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
//s3 파일 업로드
compileOnly 'org.springframework.cloud:spring-cloud-starter-aws:2.0.1.RELEASE'
implementation 'com.amazonaws:aws-java-sdk-s3:1.11.475'
implementation 'com.amazonaws:aws-java-sdk-secretsmanager:1.11.339'
implementation 'com.amazonaws:aws-encryption-sdk-java:1.6.0'
implementation 'io.awspring.cloud:spring-cloud-starter-aws:2.4.1'
}
tasks.named('test') {
useJUnitPlatform()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ public class UserRegisterStore extends TimeStamped {
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;

@Column(nullable = false, length = 1)
@Column(nullable = false)
private String name;

@Column(nullable = false, length = 1)
@Column(nullable = false)
private String address;

@Column(nullable = false, length = 1)
Expand Down

0 comments on commit 7fd832c

Please sign in to comment.