-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from thisishwan2/newDevRemote
카카오 로그인 오류 해결
- Loading branch information
Showing
13 changed files
with
227 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:17-alpine | ||
WORKDIR /app | ||
COPY ./closeUp-0.0.1-SNAPSHOT.jar ./app.jar # ./ 없으면 안됨 | ||
COPY ./closeUp-0.0.1-SNAPSHOT.jar ./app.jar | ||
ENTRYPOINT ["java", "-jar", "app.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/java/farmSystem/closeUp/dto/creator/request/PostCreatorSettingRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package farmSystem.closeUp.dto.creator.request; | ||
|
||
import lombok.Getter; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
public class PostCreatorSettingRequest { | ||
private List<Long> interestIds; | ||
private Long platformId; | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/farmSystem/closeUp/dto/user/request/PostCreatorInfoRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package farmSystem.closeUp.dto.user.request; | ||
|
||
import jakarta.validation.constraints.NotBlank; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class PostCreatorInfoRequest { | ||
@NotBlank(message = "닉네임 입력은 필수입니다.") | ||
private String nickname; | ||
@NotBlank(message = "주소 입력은 필수입니다.") | ||
private String address; | ||
@NotBlank(message = "휴대전화번호 입력은 필수입니다.") | ||
private String phoneNumber; | ||
|
||
@NotBlank(message = "성별 입력은 필수입니다.") | ||
private String gender; | ||
@NotBlank(message = "생일 입력은 필수입니다.") | ||
private String birthday; | ||
@NotBlank(message = "한줄소개는 필수입니다.") | ||
private String profileComment; | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/farmSystem/closeUp/repository/InterestRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package farmSystem.closeUp.repository; | ||
|
||
import farmSystem.closeUp.domain.Interest; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
|
||
public interface InterestRepository extends JpaRepository<Interest, Long>{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.