#7 -- move news classes to different package

This commit is contained in:
Anton Romanov 2022-03-14 12:20:41 +04:00
parent 27ff4a3f4e
commit 6a553a3330
7 changed files with 8 additions and 11 deletions

Binary file not shown.

View File

@ -9,7 +9,7 @@ package ru.ulstu.controller;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.ui.Model; import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import ru.ulstu.service.NewsService; import ru.ulstu.news.NewsService;
@Controller @Controller
public class IndexController { public class IndexController {

View File

@ -3,7 +3,7 @@ package ru.ulstu.meeting;
import org.springframework.data.domain.Page; import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import ru.ulstu.service.NewsService; import ru.ulstu.news.NewsService;
import javax.validation.constraints.NotNull; import javax.validation.constraints.NotNull;

View File

@ -1,7 +1,8 @@
package ru.ulstu.model; package ru.ulstu.news;
import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
import ru.ulstu.model.BaseEntity;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.Lob; import javax.persistence.Lob;

View File

@ -4,7 +4,7 @@
* *
*/ */
package ru.ulstu.controller; package ru.ulstu.news;
import org.springframework.data.domain.Page; import org.springframework.data.domain.Page;
import org.springframework.security.access.annotation.Secured; import org.springframework.security.access.annotation.Secured;
@ -17,10 +17,8 @@ import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
import ru.ulstu.model.News;
import ru.ulstu.model.OffsetablePageRequest; import ru.ulstu.model.OffsetablePageRequest;
import ru.ulstu.model.UserRoleConstants; import ru.ulstu.model.UserRoleConstants;
import ru.ulstu.service.NewsService;
import javax.validation.Valid; import javax.validation.Valid;
import java.io.IOException; import java.io.IOException;

View File

@ -1,9 +1,8 @@
package ru.ulstu.repository; package ru.ulstu.news;
import org.springframework.data.domain.Page; import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
import ru.ulstu.model.News;
import java.util.List; import java.util.List;

View File

@ -1,10 +1,9 @@
package ru.ulstu.service; package ru.ulstu.news;
import org.springframework.data.domain.Page; import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import ru.ulstu.model.News; import ru.ulstu.service.FileUtil;
import ru.ulstu.repository.NewsRepository;
import javax.validation.constraints.NotNull; import javax.validation.constraints.NotNull;
import java.io.IOException; import java.io.IOException;