728x90
1. 프로젝트 파일 생성
2. 프로젝트 환경설정
- application.yml
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/board-service?useSSL=false&useUnicode=true&serverTimezone=Asia/Seoul
username: root
password: 12345678
jpa:
hibernate:
ddl-auto: create
properties:
hibernate:
show_sql: true
format_sql: true
use_sql_comments: true
logging.level:
org.springframework.security: DEBUG
org.hibernate.SQL: debug
# org.hibernate.type: trace
3. github 리포지토리 동기화
https://github.com/yashin20/board_service_spring
728x90
'PROJECT > [SpringBoot] 게시판 서비스' 카테고리의 다른 글
[Spring Boot - 게시판 서비스] +) 게시글 줄바꿈 구현하기 (2) | 2024.10.30 |
---|---|
[Spring Boot - 게시판 서비스] #1. 로그인 / 회원가입 구현 (0) | 2024.10.13 |
[게시판 서비스] 회원 탈퇴시, 게시글 / 댓글 처리 (0) | 2024.06.02 |
[게시판 서비스] 게시글 키워드 검색 + 정렬 + 페이징 기능 구현 (0) | 2024.06.02 |
[게시판 서비스] 게시글 페이징 처리 구현 (0) | 2024.06.02 |