rename package name
This commit is contained in:
parent
22a2020339
commit
b3ec0955bb
|
@ -1,9 +0,0 @@
|
|||
package com.baeldung.modelmapper.service;
|
||||
|
||||
import com.baeldung.modelmapper.model.User;
|
||||
|
||||
public interface IUserService {
|
||||
|
||||
User getCurrentUser();
|
||||
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
package com.baeldung.modelmapper.controller;
|
||||
package com.baeldung.springpagination.controller;
|
||||
|
||||
import com.baeldung.modelmapper.dto.PostDto;
|
||||
import com.baeldung.modelmapper.model.Post;
|
||||
import com.baeldung.modelmapper.service.IPostService;
|
||||
import com.baeldung.modelmapper.service.IUserService;
|
||||
import com.baeldung.springpagination.dto.PostDto;
|
||||
import com.baeldung.springpagination.model.Post;
|
||||
import com.baeldung.springpagination.service.IPostService;
|
||||
import com.baeldung.springpagination.service.IUserService;
|
||||
import org.modelmapper.ModelMapper;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.http.HttpStatus;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.dto;
|
||||
package com.baeldung.springpagination.dto;
|
||||
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.dto;
|
||||
package com.baeldung.springpagination.dto;
|
||||
|
||||
public class UserDto {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.model;
|
||||
package com.baeldung.springpagination.model;
|
||||
|
||||
import java.util.Date;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.model;
|
||||
package com.baeldung.springpagination.model;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.model;
|
||||
package com.baeldung.springpagination.model;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.model;
|
||||
package com.baeldung.springpagination.model;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.repository;
|
||||
package com.baeldung.springpagination.repository;
|
||||
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
@ -7,8 +7,8 @@ import org.springframework.data.jpa.repository.Query;
|
|||
import org.springframework.data.repository.PagingAndSortingRepository;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
|
||||
import com.baeldung.modelmapper.model.Post;
|
||||
import com.baeldung.modelmapper.model.User;
|
||||
import com.baeldung.springpagination.model.Post;
|
||||
import com.baeldung.springpagination.model.User;
|
||||
|
||||
public interface PostRepository extends JpaRepository<Post, Long>, PagingAndSortingRepository<Post, Long> {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.repository;
|
||||
package com.baeldung.springpagination.repository;
|
||||
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
@ -6,7 +6,7 @@ import org.springframework.data.repository.PagingAndSortingRepository;
|
|||
import org.springframework.data.repository.query.Param;
|
||||
import org.springframework.data.rest.core.annotation.RestResource;
|
||||
|
||||
import com.baeldung.modelmapper.model.Subject;
|
||||
import com.baeldung.springpagination.model.Subject;
|
||||
|
||||
public interface SubjectRepository extends PagingAndSortingRepository<Subject, Long> {
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
package com.baeldung.modelmapper.service;
|
||||
package com.baeldung.springpagination.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.baeldung.modelmapper.model.Post;
|
||||
import com.baeldung.springpagination.model.Post;
|
||||
|
||||
public interface IPostService {
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
package com.baeldung.springpagination.service;
|
||||
|
||||
import com.baeldung.springpagination.model.User;
|
||||
|
||||
public interface IUserService {
|
||||
|
||||
User getCurrentUser();
|
||||
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.modelmapper.service;
|
||||
package com.baeldung.springpagination.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -8,8 +8,8 @@ import org.springframework.data.domain.PageRequest;
|
|||
import org.springframework.data.domain.Sort;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baeldung.modelmapper.model.Post;
|
||||
import com.baeldung.modelmapper.repository.PostRepository;
|
||||
import com.baeldung.springpagination.model.Post;
|
||||
import com.baeldung.springpagination.repository.PostRepository;
|
||||
|
||||
@Service
|
||||
public class PostService implements IPostService {
|
|
@ -1,9 +1,9 @@
|
|||
package com.baeldung.modelmapper.service;
|
||||
package com.baeldung.springpagination.service;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.baeldung.modelmapper.model.Preference;
|
||||
import com.baeldung.modelmapper.model.User;
|
||||
import com.baeldung.springpagination.model.Preference;
|
||||
import com.baeldung.springpagination.model.User;
|
||||
|
||||
@Service
|
||||
public class UserService implements IUserService {
|
|
@ -1,12 +1,12 @@
|
|||
package com.baeldung.modelmapper;
|
||||
package com.baeldung.springpagination;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic;
|
||||
import org.junit.Test;
|
||||
import org.modelmapper.ModelMapper;
|
||||
|
||||
import com.baeldung.modelmapper.dto.PostDto;
|
||||
import com.baeldung.modelmapper.model.Post;
|
||||
import com.baeldung.springpagination.dto.PostDto;
|
||||
import com.baeldung.springpagination.model.Post;
|
||||
|
||||
public class PostDtoUnitTest {
|
||||
|
Loading…
Reference in New Issue