빌드문제로 패키지명 롤백
This commit is contained in:
@@ -32,7 +32,7 @@ import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import static myblog.blog.infra.utils.MarkdownUtils.*;
|
||||
import static myblog.blog.base.utils.MarkdownUtils.*;
|
||||
|
||||
@Controller
|
||||
@RequiredArgsConstructor
|
||||
|
||||
@@ -3,7 +3,7 @@ package myblog.blog.article.domain;
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import myblog.blog.article.dto.ArticleForm;
|
||||
import myblog.blog.infra.BasicEntity;
|
||||
import myblog.blog.base.BasicEntity;
|
||||
import myblog.blog.category.domain.Category;
|
||||
import myblog.blog.comment.domain.Comment;
|
||||
import myblog.blog.member.doamin.Member;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package myblog.blog.article.domain;
|
||||
|
||||
import lombok.Getter;
|
||||
import myblog.blog.infra.BasicEntity;
|
||||
import myblog.blog.base.BasicEntity;
|
||||
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package myblog.blog.infra;
|
||||
package myblog.blog.base;
|
||||
|
||||
import lombok.Getter;
|
||||
import org.springframework.data.annotation.CreatedDate;
|
||||
@@ -1,4 +1,4 @@
|
||||
package myblog.blog.infra;
|
||||
package myblog.blog.base;
|
||||
|
||||
import org.hibernate.dialect.MySQL8Dialect;
|
||||
import org.hibernate.dialect.function.SQLFunctionTemplate;
|
||||
@@ -1,4 +1,4 @@
|
||||
package myblog.blog.infra.config;
|
||||
package myblog.blog.base.config;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import org.modelmapper.ModelMapper;
|
||||
@@ -1,4 +1,4 @@
|
||||
package myblog.blog.infra.config;
|
||||
package myblog.blog.base.config;
|
||||
|
||||
import net.sf.ehcache.Cache;
|
||||
import net.sf.ehcache.config.CacheConfiguration;
|
||||
@@ -1,4 +1,4 @@
|
||||
package myblog.blog.infra.config;
|
||||
package myblog.blog.base.config;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import myblog.blog.exception.LoginFailHandler;
|
||||
@@ -1,4 +1,4 @@
|
||||
package myblog.blog.infra.utils;
|
||||
package myblog.blog.base.utils;
|
||||
|
||||
import org.commonmark.ext.gfm.tables.TablesExtension;
|
||||
import org.commonmark.parser.Parser;
|
||||
@@ -4,7 +4,7 @@ package myblog.blog.category.domain;
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import myblog.blog.article.domain.Article;
|
||||
import myblog.blog.infra.BasicEntity;
|
||||
import myblog.blog.base.BasicEntity;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.util.ArrayList;
|
||||
|
||||
@@ -3,7 +3,7 @@ package myblog.blog.comment.domain;
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import myblog.blog.article.domain.Article;
|
||||
import myblog.blog.infra.BasicEntity;
|
||||
import myblog.blog.base.BasicEntity;
|
||||
import myblog.blog.member.doamin.Member;
|
||||
import org.hibernate.annotations.OnDelete;
|
||||
import org.hibernate.annotations.OnDeleteAction;
|
||||
|
||||
@@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import static myblog.blog.infra.utils.MarkdownUtils.*;
|
||||
import static myblog.blog.base.utils.MarkdownUtils.*;
|
||||
|
||||
@Controller
|
||||
@RequiredArgsConstructor
|
||||
|
||||
@@ -4,7 +4,7 @@ import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import myblog.blog.article.domain.Article;
|
||||
import myblog.blog.infra.BasicEntity;
|
||||
import myblog.blog.base.BasicEntity;
|
||||
import myblog.blog.comment.domain.Comment;
|
||||
|
||||
import javax.persistence.*;
|
||||
|
||||
@@ -13,7 +13,7 @@ import java.sql.Timestamp;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.*;
|
||||
|
||||
import static myblog.blog.infra.utils.MarkdownUtils.*;
|
||||
import static myblog.blog.base.utils.MarkdownUtils.*;
|
||||
|
||||
/*
|
||||
- rss 서비스 로직
|
||||
|
||||
@@ -2,7 +2,7 @@ package myblog.blog.tags.domain;
|
||||
|
||||
import lombok.*;
|
||||
import myblog.blog.article.domain.Article;
|
||||
import myblog.blog.infra.BasicEntity;
|
||||
import myblog.blog.base.BasicEntity;
|
||||
|
||||
import javax.persistence.*;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package myblog.blog.tags.domain;
|
||||
|
||||
import lombok.*;
|
||||
import myblog.blog.infra.BasicEntity;
|
||||
import myblog.blog.base.BasicEntity;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.util.*;
|
||||
|
||||
Reference in New Issue
Block a user