File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
src/main/java/com/solucitation/midpoint_backend/domain/community_board/entity Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,11 @@ dependencies {
57
57
testImplementation ' org.springframework.boot:spring-boot-starter-test'
58
58
testImplementation ' org.springframework.security:spring-security-test'
59
59
testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
60
+
61
+ // Spring과 commons-logging의 충돌을 피하기 위해 commons-logging.jar를 제거
62
+ implementation(' org.springframework.boot:spring-boot-starter' ) {
63
+ exclude group : ' commons-logging' , module : ' commons-logging'
64
+ }
60
65
}
61
66
62
67
tasks. named(' test' ) {
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public class Hashtag {
22
22
@ Column (name ="hashtag_name" , nullable = false )
23
23
private String name ;
24
24
25
+ @ Builder .Default
25
26
@ OneToMany (mappedBy = "hashtag" , fetch = LAZY )
26
27
private List <PostHashtag > postHashtags = new ArrayList <>();
27
28
}
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ public class Likes {
28
28
@ JoinColumn (name ="member_id" , nullable = false )
29
29
private Member member ;
30
30
31
+ @ Builder .Default
31
32
private Boolean isLike = true ;
32
33
33
34
@ CreationTimestamp
You can’t perform that action at this time.
0 commit comments