Skip to content

origoni/spring-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpringBlog from Millky

SpringBoot 3 base Open-source Blog

밀키(millky.com)에서 블로그 부분을 뽑아(?) 오픈소스 합니다.

SpringBoot3 + Spring Data JPA + Spring Security + ...

단지 코드만 공개한는 것이 아니라. 개발 과정을 같이 공개하려 합니다.

LIVE DEMO

개발된 기능

  • 기본적인 블로그 뷰
  • 페이스북, 구글 소셜 로그인(깃헙등도 간단하게 추가 가능)
  • 글쓰기, 수정, 삭제. 페이징
  • 댓글쓰기, 삭제
  • 카테고리
  • 태그
  • RSS 뷰
  • 간단한 검색(DB)

추가 예정

  • 추가적인 소셜 로그인 및 기본 로그인
  • 댓글 수정
  • 국제화(i18n 다국어 지원)
  • 기타 DB 지원
  • 간단한 캐싱 (EHCache ?)

Quick Start

설치되어 있어야 할 것

  • JDK 17 이상
  • Maven
  • Git
git clone https://github.com/origoni/Spring-Blog
cd Spring-Blog
mvn spring-boot:run

Tested

  • STS(Eclipse) ??
  • IntelliJ IDEA 2022.3
//@formatter:off & //@formatter:on
eclipse : Preferences -> Java -> Code style -> Formatter -> Edit... (or New...) > Off/On Tags
intellij : Preferences -> Editor -> Code Style > Formatter Control > Enable formatter markers in comments

관련 링크

Project Convention

Package Structure

com.millky.blog
    └── application
        └── aop
        └── configuration
        └── utility
    └── domain
        └── model
            └── command
            └── entity
            └── exception
        └── repository
        └── service
    └── infrastructure
        └── dao
    └── presentation
        └── controller
            └── rest
            └── web
        └── support
            └── result

Environment

  • Java version: 17
  • Spring Boot version: 3.0.1
  • Default Encoding: UTF-8
  • Default SCM : git

프로젝트 설정

  1. STS 설치 -> http://millky.com/@origoni/post/1100
  2. Lombok 설치 -> https://projectlombok.org/ (STS에 설치 : http://millky.com/@origoni/post/1164)
  3. GitHub 다운 -> http://millky.com/@origoni/post/1145 (OSX : http://millky.com/@origoni/post/1140)