LabWork03
This commit is contained in:
parent
e11781e6c1
commit
1874d96ed7
@ -7,6 +7,17 @@ plugins {
|
|||||||
group = 'com.example'
|
group = 'com.example'
|
||||||
version = '0.0.1-SNAPSHOT'
|
version = '0.0.1-SNAPSHOT'
|
||||||
|
|
||||||
|
defaultTasks 'bootRun'
|
||||||
|
|
||||||
|
jar {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
|
bootJar {
|
||||||
|
archiveFileName = String.format('%s-%s.jar', rootProject.name, version)
|
||||||
|
}
|
||||||
|
|
||||||
|
assert System.properties['java.specification.version'] == '17' || '21'
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = '17'
|
sourceCompatibility = '17'
|
||||||
}
|
}
|
||||||
@ -21,6 +32,9 @@ dependencies {
|
|||||||
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
|
||||||
implementation 'org.modelmapper:modelmapper:3.2.0'
|
implementation 'org.modelmapper:modelmapper:3.2.0'
|
||||||
|
|
||||||
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||||
|
implementation 'com.h2database:h2:2.2.224'
|
||||||
|
|
||||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BIN
demo/data.mv.db
Normal file
BIN
demo/data.mv.db
Normal file
Binary file not shown.
@ -1,6 +1,7 @@
|
|||||||
package com.example.demo;
|
package com.example.demo;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
@ -9,10 +10,10 @@ import org.springframework.boot.CommandLineRunner;
|
|||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
import com.example.demo.items.model.ItemEntity;
|
|
||||||
import com.example.demo.items.service.ItemService;
|
|
||||||
import com.example.demo.messages.model.MessageEntity;
|
import com.example.demo.messages.model.MessageEntity;
|
||||||
import com.example.demo.messages.service.MessageService;
|
import com.example.demo.messages.service.MessageService;
|
||||||
|
import com.example.demo.orders.model.OrderEntity;
|
||||||
|
import com.example.demo.orders.service.OrderService;
|
||||||
import com.example.demo.types.model.TypeEntity;
|
import com.example.demo.types.model.TypeEntity;
|
||||||
import com.example.demo.types.service.TypeService;
|
import com.example.demo.types.service.TypeService;
|
||||||
import com.example.demo.users.model.UserEntity;
|
import com.example.demo.users.model.UserEntity;
|
||||||
@ -27,7 +28,7 @@ public class DemoApplication implements CommandLineRunner {
|
|||||||
private final TypeService typeService;
|
private final TypeService typeService;
|
||||||
|
|
||||||
// Бизнес-логика для сущности "Заказ" (Заказ, содержащий книги)
|
// Бизнес-логика для сущности "Заказ" (Заказ, содержащий книги)
|
||||||
private final ItemService itemService;
|
private final OrderService orderService;
|
||||||
|
|
||||||
// Бизнес-логика для сущности "Пользователь"
|
// Бизнес-логика для сущности "Пользователь"
|
||||||
private final UserService userService;
|
private final UserService userService;
|
||||||
@ -36,9 +37,13 @@ public class DemoApplication implements CommandLineRunner {
|
|||||||
private final MessageService messageService;
|
private final MessageService messageService;
|
||||||
|
|
||||||
// Конструктор
|
// Конструктор
|
||||||
public DemoApplication(TypeService typeService, ItemService itemService, UserService userService, MessageService messageService) {
|
public DemoApplication(
|
||||||
|
TypeService typeService,
|
||||||
|
OrderService orderService,
|
||||||
|
UserService userService,
|
||||||
|
MessageService messageService) {
|
||||||
this.typeService = typeService;
|
this.typeService = typeService;
|
||||||
this.itemService = itemService;
|
this.orderService = orderService;
|
||||||
this.userService = userService;
|
this.userService = userService;
|
||||||
this.messageService = messageService;
|
this.messageService = messageService;
|
||||||
}
|
}
|
||||||
@ -52,32 +57,46 @@ public class DemoApplication implements CommandLineRunner {
|
|||||||
public void run(String... args) throws Exception {
|
public void run(String... args) throws Exception {
|
||||||
if (args.length > 0 && Objects.equals("--populate", args[0])) {
|
if (args.length > 0 && Objects.equals("--populate", args[0])) {
|
||||||
log.info("Create default types values");
|
log.info("Create default types values");
|
||||||
final var type1 = typeService.create(new TypeEntity(null, "Protection"));
|
final var type1 = typeService.create(new TypeEntity("Protection"));
|
||||||
final var type2 = typeService.create(new TypeEntity(null, "Sharpness"));
|
final var type2 = typeService.create(new TypeEntity("Sharpness"));
|
||||||
final var type3 = typeService.create(new TypeEntity(null, "Infinity"));
|
final var type3 = typeService.create(new TypeEntity("Infinity"));
|
||||||
|
|
||||||
log.info("Create default items values");
|
|
||||||
itemService.create(new ItemEntity(null, type1, 50.00, 20));
|
|
||||||
itemService.create(new ItemEntity(null, type1, 12.00, 3));
|
|
||||||
itemService.create(new ItemEntity(null, type2, 15.00, 30));
|
|
||||||
itemService.create(new ItemEntity(null, type2, 64.00, 10));
|
|
||||||
itemService.create(new ItemEntity(null, type2, 15.00, 6));
|
|
||||||
itemService.create(new ItemEntity(null, type3, 80.00, 6));
|
|
||||||
itemService.create(new ItemEntity(null, type3, 64.00, 3));
|
|
||||||
|
|
||||||
log.info("Create default users values");
|
log.info("Create default users values");
|
||||||
final var user1 = userService.create(new UserEntity(null, "User1", "password1", "mail1@gmail.com"));
|
final var user1 = userService.create(new UserEntity("User1", "password", "mail1@gmail.com"));
|
||||||
final var user2 = userService.create(new UserEntity(null, "User2", "password2", "mail2@gmail.com"));
|
final var user2 = userService.create(new UserEntity("User2", "password", "mail2@gmail.com"));
|
||||||
final var user3 = userService.create(new UserEntity(null, "User3", "password3", "mail3@gmail.com"));
|
final var user3 = userService.create(new UserEntity("User3", "password", "mail3@gmail.com"));
|
||||||
|
|
||||||
|
log.info("Create default order values");
|
||||||
|
final var orders = List.of(
|
||||||
|
new OrderEntity(type1, 12.00, 3),
|
||||||
|
new OrderEntity(type1, 50.00, 20),
|
||||||
|
new OrderEntity(type2, 15.00, 30),
|
||||||
|
new OrderEntity(type2, 64.00, 10),
|
||||||
|
new OrderEntity(type2, 15.00, 6),
|
||||||
|
new OrderEntity(type3, 80.00, 6),
|
||||||
|
new OrderEntity(type3, 64.00, 3)
|
||||||
|
);
|
||||||
|
orders.forEach(order -> orderService.create(user1.getId(), order));
|
||||||
|
|
||||||
log.info("Create default messages values");
|
log.info("Create default messages values");
|
||||||
messageService.create(new MessageEntity(null, user1, "Message1", LocalDateTime.now(), false));
|
final var messages1 = List.of(
|
||||||
messageService.create(new MessageEntity(null, user1, "Message2", LocalDateTime.now(), false));
|
new MessageEntity("Message1", LocalDateTime.now(), false),
|
||||||
messageService.create(new MessageEntity(null, user2, "Message3", LocalDateTime.now(), false));
|
new MessageEntity("Message2", LocalDateTime.now(), false),
|
||||||
messageService.create(new MessageEntity(null, user2, "Message4", LocalDateTime.now(), false));
|
new MessageEntity("Message3", LocalDateTime.now(), false)
|
||||||
messageService.create(new MessageEntity(null, user2, "Message5", LocalDateTime.now(), false));
|
);
|
||||||
messageService.create(new MessageEntity(null, user3, "Message6", LocalDateTime.now(), false));
|
messages1.forEach(message -> messageService.create(user1.getId(), message));
|
||||||
messageService.create(new MessageEntity(null, user3, "Message7", LocalDateTime.now(), false));
|
|
||||||
|
final var messages2 = List.of(
|
||||||
|
new MessageEntity("Message4", LocalDateTime.now(), false),
|
||||||
|
new MessageEntity("Message5", LocalDateTime.now(), false)
|
||||||
|
);
|
||||||
|
messages2.forEach(message -> messageService.create(user2.getId(), message));
|
||||||
|
|
||||||
|
final var messages3 = List.of(
|
||||||
|
new MessageEntity("Message6", LocalDateTime.now(), false),
|
||||||
|
new MessageEntity("Message7", LocalDateTime.now(), false)
|
||||||
|
);
|
||||||
|
messages3.forEach(message -> messageService.create(user3.getId(), message));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,9 @@ package com.example.demo.core.configuration;
|
|||||||
|
|
||||||
// Класс для задания констант
|
// Класс для задания констант
|
||||||
public class Constants {
|
public class Constants {
|
||||||
|
// Имя последовательности
|
||||||
|
public static final String SEQUENCE_NAME = "hibernate_sequence";
|
||||||
|
|
||||||
// Базовый префикс REST-API
|
// Базовый префикс REST-API
|
||||||
public static final String API_URL = "/api/1.0";
|
public static final String API_URL = "/api/1.0";
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ package com.example.demo.core.error;
|
|||||||
|
|
||||||
// Собственное непроверяемое исключение
|
// Собственное непроверяемое исключение
|
||||||
public class NotFoundException extends RuntimeException {
|
public class NotFoundException extends RuntimeException {
|
||||||
public NotFoundException(Long id) {
|
public <T> NotFoundException(Class<T> clazz, Long id) {
|
||||||
super(String.format("Entity with id [%s] is not found or not exists", id));
|
super(String.format("%s with id [%s] is not found or not exists", clazz.getSimpleName(), id));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,26 @@
|
|||||||
package com.example.demo.core.model;
|
package com.example.demo.core.model;
|
||||||
|
|
||||||
|
import com.example.demo.core.configuration.Constants;
|
||||||
|
|
||||||
|
import jakarta.persistence.GeneratedValue;
|
||||||
|
import jakarta.persistence.GenerationType;
|
||||||
|
import jakarta.persistence.Id;
|
||||||
|
import jakarta.persistence.MappedSuperclass;
|
||||||
|
import jakarta.persistence.SequenceGenerator;
|
||||||
|
|
||||||
// Абстрактный класс для базовой сущности
|
// Абстрактный класс для базовой сущности
|
||||||
|
@MappedSuperclass
|
||||||
public abstract class BaseEntity {
|
public abstract class BaseEntity {
|
||||||
// Идентфикатор
|
// Идентфикатор
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = Constants.SEQUENCE_NAME)
|
||||||
|
@SequenceGenerator(name = Constants.SEQUENCE_NAME, sequenceName = Constants.SEQUENCE_NAME, allocationSize = 1)
|
||||||
protected Long id;
|
protected Long id;
|
||||||
|
|
||||||
// Конструктор по умолчанию
|
// Конструктор по умолчанию
|
||||||
protected BaseEntity() {
|
protected BaseEntity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Конструктор с параметрами для создания объекта
|
|
||||||
protected BaseEntity(Long id) {
|
|
||||||
this.id = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получить идентификатор
|
// Получить идентификатор
|
||||||
public Long getId() {
|
public Long getId() {
|
||||||
return id;
|
return id;
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
package com.example.demo.core.repository;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
// Интерфейс хранилища элементов
|
|
||||||
public interface CommonRepository<E, T> {
|
|
||||||
// Получить все элементы
|
|
||||||
List<E> getAll();
|
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
|
||||||
E get(T id);
|
|
||||||
|
|
||||||
// Добавить элемент
|
|
||||||
E create(E entity);
|
|
||||||
|
|
||||||
// Изменить элемент
|
|
||||||
E update(E entity);
|
|
||||||
|
|
||||||
// Удалить элемент
|
|
||||||
E delete(E entity);
|
|
||||||
|
|
||||||
// Удалить все элементы
|
|
||||||
void deleteAll();
|
|
||||||
}
|
|
@ -1,68 +0,0 @@
|
|||||||
package com.example.demo.core.repository;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.TreeMap;
|
|
||||||
|
|
||||||
import com.example.demo.core.model.BaseEntity;
|
|
||||||
|
|
||||||
// Абстрактный класс хранилища для всех базовых сущностей
|
|
||||||
public abstract class MapRepository<E extends BaseEntity> implements CommonRepository<E, Long> {
|
|
||||||
// Набор элементов
|
|
||||||
private final Map<Long, E> entities = new TreeMap<>();
|
|
||||||
|
|
||||||
// Количество элементов хранилища
|
|
||||||
private Long lastId = 0L;
|
|
||||||
|
|
||||||
// Конструктор по умолчанию
|
|
||||||
protected MapRepository() {
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получить все элементы
|
|
||||||
@Override
|
|
||||||
public List<E> getAll() {
|
|
||||||
return entities.values().stream().toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
|
||||||
@Override
|
|
||||||
public E get(Long id) {
|
|
||||||
return entities.get(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Добавить элемент
|
|
||||||
@Override
|
|
||||||
public E create(E entity) {
|
|
||||||
lastId++;
|
|
||||||
entity.setId(lastId);
|
|
||||||
entities.put(lastId, entity);
|
|
||||||
return entity;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Изменить элемент
|
|
||||||
@Override
|
|
||||||
public E update(E entity) {
|
|
||||||
if (get(entity.getId()) == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
entities.put(entity.getId(), entity);
|
|
||||||
return entity;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Удалить элемент
|
|
||||||
@Override
|
|
||||||
public E delete(E entity) {
|
|
||||||
if (get(entity.getId()) == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
entities.remove(entity.getId());
|
|
||||||
return entity;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Удалить все элементы
|
|
||||||
@Override
|
|
||||||
public void deleteAll() {
|
|
||||||
lastId = 0L;
|
|
||||||
entities.clear();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,84 +0,0 @@
|
|||||||
package com.example.demo.items.api;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.modelmapper.ModelMapper;
|
|
||||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
|
||||||
import org.springframework.web.bind.annotation.PathVariable;
|
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
|
||||||
import org.springframework.web.bind.annotation.PutMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
import com.example.demo.core.configuration.Constants;
|
|
||||||
import com.example.demo.items.model.ItemEntity;
|
|
||||||
import com.example.demo.items.service.ItemService;
|
|
||||||
import com.example.demo.types.service.TypeService;
|
|
||||||
|
|
||||||
import jakarta.validation.Valid;
|
|
||||||
|
|
||||||
// Контроллер для сущности "Заказ" (Заказ, содержащий книги)
|
|
||||||
@RestController
|
|
||||||
@RequestMapping(Constants.API_URL + "/item")
|
|
||||||
public class ItemController {
|
|
||||||
// Бизнес-логика для сущности "Заказ" (Заказ, содержащий книги)
|
|
||||||
private final ItemService itemService;
|
|
||||||
|
|
||||||
// Бизнес-логика для сущности "Тип" (Тип книги)
|
|
||||||
private final TypeService typeService;
|
|
||||||
|
|
||||||
// Библиотека для преобразования сущности
|
|
||||||
private final ModelMapper modelMapper;
|
|
||||||
|
|
||||||
// Конструктор
|
|
||||||
public ItemController(ItemService itemService, TypeService typeService, ModelMapper modelMapper) {
|
|
||||||
this.itemService = itemService;
|
|
||||||
this.typeService = typeService;
|
|
||||||
this.modelMapper = modelMapper;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Преобразовать из сущности в DTO
|
|
||||||
private ItemDto toDto(ItemEntity entity) {
|
|
||||||
return modelMapper.map(entity, ItemDto.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Преобразовать из DTO в сущность
|
|
||||||
private ItemEntity toEntity(@Valid ItemDto dto) {
|
|
||||||
final ItemEntity entity = modelMapper.map(dto, ItemEntity.class);
|
|
||||||
entity.setType(typeService.get(dto.getTypeId()));
|
|
||||||
return entity;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получить все элементы или по заданному фильтру
|
|
||||||
@GetMapping
|
|
||||||
public List<ItemDto> getAll(@RequestParam(name = "typeId", defaultValue = "0") Long typeId) {
|
|
||||||
return itemService.getAll(typeId).stream().map(this::toDto).toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
|
||||||
@GetMapping("/{id}")
|
|
||||||
public ItemDto get(@PathVariable(name = "id") Long id) {
|
|
||||||
return toDto(itemService.get(id));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Создать элемент
|
|
||||||
@PostMapping
|
|
||||||
public ItemDto create(@RequestBody @Valid ItemDto dto) {
|
|
||||||
return toDto(itemService.create(toEntity(dto)));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Изменить элемент
|
|
||||||
@PutMapping("/{id}")
|
|
||||||
public ItemDto update(@PathVariable(name = "id") Long id, @RequestBody @Valid ItemDto dto) {
|
|
||||||
return toDto(itemService.update(id, toEntity(dto)));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Удалить элемент
|
|
||||||
@DeleteMapping("/{id}")
|
|
||||||
public ItemDto delete(@PathVariable(name = "id") Long id) {
|
|
||||||
return toDto(itemService.delete(id));
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
package com.example.demo.items.repository;
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
import com.example.demo.core.repository.MapRepository;
|
|
||||||
import com.example.demo.items.model.ItemEntity;
|
|
||||||
|
|
||||||
// Хранилище для сущности "Заказ" (Заказ, содержащий книги)
|
|
||||||
@Repository
|
|
||||||
public class ItemRepository extends MapRepository<ItemEntity> {
|
|
||||||
}
|
|
@ -1,64 +0,0 @@
|
|||||||
package com.example.demo.items.service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.Optional;
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
|
||||||
import com.example.demo.items.model.ItemEntity;
|
|
||||||
import com.example.demo.items.repository.ItemRepository;
|
|
||||||
|
|
||||||
// Бизнес-логика для сущности "Заказ" (Заказ, содержащий книги)
|
|
||||||
@Service
|
|
||||||
public class ItemService {
|
|
||||||
// Хранилище элементов
|
|
||||||
private final ItemRepository repository;
|
|
||||||
|
|
||||||
// Конструктор
|
|
||||||
public ItemService(ItemRepository repository) {
|
|
||||||
this.repository = repository;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получить все элементы или по заданному фильтру
|
|
||||||
public List<ItemEntity> getAll(Long typeId) {
|
|
||||||
if (Objects.equals(typeId, 0L)) {
|
|
||||||
return repository.getAll();
|
|
||||||
}
|
|
||||||
return repository.getAll().stream()
|
|
||||||
.filter(item -> item.getType().getId().equals(typeId))
|
|
||||||
.toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
|
||||||
public ItemEntity get(Long id) {
|
|
||||||
return Optional.ofNullable(repository.get(id))
|
|
||||||
.orElseThrow(() -> new NotFoundException(id));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Создать элемент
|
|
||||||
public ItemEntity create(ItemEntity entity) {
|
|
||||||
return repository.create(entity);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Изменить элемент
|
|
||||||
public ItemEntity update(Long id, ItemEntity entity) {
|
|
||||||
final ItemEntity existsEntity = get(id);
|
|
||||||
existsEntity.setType(entity.getType());
|
|
||||||
existsEntity.setPrice(entity.getPrice());
|
|
||||||
existsEntity.setCount(entity.getCount());
|
|
||||||
return repository.update(existsEntity);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Удалить элемент
|
|
||||||
public ItemEntity delete(Long id) {
|
|
||||||
final ItemEntity existsEntity = get(id);
|
|
||||||
return repository.delete(existsEntity);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Удалить все элементы
|
|
||||||
public void deleteAll() {
|
|
||||||
repository.deleteAll();
|
|
||||||
}
|
|
||||||
}
|
|
@ -10,33 +10,27 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|||||||
import org.springframework.web.bind.annotation.PutMapping;
|
import org.springframework.web.bind.annotation.PutMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
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.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
import com.example.demo.core.configuration.Constants;
|
import com.example.demo.core.configuration.Constants;
|
||||||
import com.example.demo.messages.model.MessageEntity;
|
import com.example.demo.messages.model.MessageEntity;
|
||||||
import com.example.demo.messages.service.MessageService;
|
import com.example.demo.messages.service.MessageService;
|
||||||
import com.example.demo.users.service.UserService;
|
|
||||||
|
|
||||||
import jakarta.validation.Valid;
|
import jakarta.validation.Valid;
|
||||||
|
|
||||||
// Контроллер для сущности "Сообщение"
|
// Контроллер для сущности "Сообщение"
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping(Constants.API_URL + "/message")
|
@RequestMapping(Constants.API_URL + "/user/{user}/message")
|
||||||
public class MessageController {
|
public class MessageController {
|
||||||
// Бизнес-логика для сущности "Сообщение"
|
// Бизнес-логика для сущности "Сообщение"
|
||||||
private final MessageService messageService;
|
private final MessageService messageService;
|
||||||
|
|
||||||
// Бизнес-логика для сущности "Пользователь"
|
|
||||||
private final UserService userService;
|
|
||||||
|
|
||||||
// Библиотека для преобразования сущности
|
// Библиотека для преобразования сущности
|
||||||
private final ModelMapper modelMapper;
|
private final ModelMapper modelMapper;
|
||||||
|
|
||||||
// Конструктор
|
// Конструктор
|
||||||
public MessageController(MessageService messageService, UserService userService, ModelMapper modelMapper) {
|
public MessageController(MessageService messageService, ModelMapper modelMapper) {
|
||||||
this.messageService = messageService;
|
this.messageService = messageService;
|
||||||
this.userService = userService;
|
|
||||||
this.modelMapper = modelMapper;
|
this.modelMapper = modelMapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,37 +42,47 @@ public class MessageController {
|
|||||||
// Преобразовать из DTO в сущность
|
// Преобразовать из DTO в сущность
|
||||||
private MessageEntity toEntity(@Valid MessageDto dto) {
|
private MessageEntity toEntity(@Valid MessageDto dto) {
|
||||||
final MessageEntity entity = modelMapper.map(dto, MessageEntity.class);
|
final MessageEntity entity = modelMapper.map(dto, MessageEntity.class);
|
||||||
entity.setSender(userService.get(dto.getSenderId()));
|
|
||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить все элементы
|
// Получить все элементы
|
||||||
@GetMapping
|
@GetMapping
|
||||||
public List<MessageDto> getAll(@RequestParam(name = "senderId", defaultValue = "0") Long senderId) {
|
public List<MessageDto> getAll(@PathVariable(name = "user") Long userId) {
|
||||||
return messageService.getAll(senderId).stream().map(this::toDto).toList();
|
return messageService.getAll(userId).stream()
|
||||||
|
.map(this::toDto)
|
||||||
|
.toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
// Получить элемент по идентификатору
|
||||||
@GetMapping("/{id}")
|
@GetMapping("/{id}")
|
||||||
public MessageDto get(@PathVariable(name = "id") Long id) {
|
public MessageDto get(
|
||||||
return toDto(messageService.get(id));
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@PathVariable(name = "id") Long id) {
|
||||||
|
return toDto(messageService.get(userId, id));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Создать элемент
|
// Создать элемент
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public MessageDto create(@RequestBody @Valid MessageDto dto) {
|
public MessageDto create(
|
||||||
return toDto(messageService.create(toEntity(dto)));
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@RequestBody @Valid MessageDto dto) {
|
||||||
|
return toDto(messageService.create(userId, toEntity(dto)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Изменить элемент
|
// Изменить элемент
|
||||||
@PutMapping("/{id}")
|
@PutMapping("/{id}")
|
||||||
public MessageDto update(@PathVariable(name = "id") Long id, @RequestBody @Valid MessageDto dto) {
|
public MessageDto update(
|
||||||
return toDto(messageService.update(id, toEntity(dto)));
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@PathVariable(name = "id") Long id,
|
||||||
|
@RequestBody @Valid MessageDto dto) {
|
||||||
|
return toDto(messageService.update(userId, id, toEntity(dto)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удалить элемент
|
// Удалить элемент
|
||||||
@DeleteMapping("/{id}")
|
@DeleteMapping("/{id}")
|
||||||
public MessageDto delete(@PathVariable(name = "id") Long id) {
|
public MessageDto delete(
|
||||||
return toDto(messageService.delete(id));
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@PathVariable(name = "id") Long id) {
|
||||||
|
return toDto(messageService.delete(userId, id));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ public class MessageDto {
|
|||||||
// Идентификатор отправителя сообщения
|
// Идентификатор отправителя сообщения
|
||||||
@NotNull
|
@NotNull
|
||||||
@Min(1)
|
@Min(1)
|
||||||
private Long senderId;
|
private Long userId;
|
||||||
|
|
||||||
// Текст сообщения
|
// Текст сообщения
|
||||||
@NotBlank
|
@NotBlank
|
||||||
@ -41,13 +41,13 @@ public class MessageDto {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Получить идентификатор отправителя сообщения
|
// Получить идентификатор отправителя сообщения
|
||||||
public Long getSenderId() {
|
public Long getUserId() {
|
||||||
return senderId;
|
return userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Установить идентификатор отправителя сообщения
|
// Установить идентификатор отправителя сообщения
|
||||||
public void setSenderId(Long senderId) {
|
public void setUserId(Long userId) {
|
||||||
this.senderId = senderId;
|
this.userId = userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить текст сообщения
|
// Получить текст сообщения
|
||||||
|
@ -6,42 +6,55 @@ import java.util.Objects;
|
|||||||
import com.example.demo.core.model.BaseEntity;
|
import com.example.demo.core.model.BaseEntity;
|
||||||
import com.example.demo.users.model.UserEntity;
|
import com.example.demo.users.model.UserEntity;
|
||||||
|
|
||||||
|
import jakarta.persistence.Entity;
|
||||||
|
import jakarta.persistence.JoinColumn;
|
||||||
|
import jakarta.persistence.ManyToOne;
|
||||||
|
import jakarta.persistence.Table;
|
||||||
|
import jakarta.persistence.Column;
|
||||||
|
|
||||||
// Сущность "Сообщение"
|
// Сущность "Сообщение"
|
||||||
|
@Entity
|
||||||
|
@Table(name = "messages")
|
||||||
public class MessageEntity extends BaseEntity {
|
public class MessageEntity extends BaseEntity {
|
||||||
// Отправитель сообщения
|
// Отправитель сообщения
|
||||||
private UserEntity sender;
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "userId", nullable = false)
|
||||||
|
private UserEntity user;
|
||||||
|
|
||||||
// Текст сообщения
|
// Текст сообщения
|
||||||
|
@Column(nullable = false)
|
||||||
private String text;
|
private String text;
|
||||||
|
|
||||||
// Дата отправки
|
// Дата отправки
|
||||||
|
@Column(nullable = false)
|
||||||
private LocalDateTime date;
|
private LocalDateTime date;
|
||||||
|
|
||||||
// Признак публикации сообщения
|
// Признак публикации сообщения
|
||||||
|
@Column(nullable = false)
|
||||||
private boolean isPublished;
|
private boolean isPublished;
|
||||||
|
|
||||||
// Конструктор по умолчанию
|
// Конструктор по умолчанию
|
||||||
public MessageEntity() {
|
public MessageEntity() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Конструктор с параметрами для создания объекта
|
// Конструктор с параметрами для создания объекта
|
||||||
public MessageEntity(Long id, UserEntity sender, String text, LocalDateTime date, boolean isPublished) {
|
public MessageEntity(String text, LocalDateTime date, boolean isPublished) {
|
||||||
super(id);
|
|
||||||
this.sender = sender;
|
|
||||||
this.text = text;
|
this.text = text;
|
||||||
this.date = date;
|
this.date = date;
|
||||||
this.isPublished = isPublished;
|
this.isPublished = isPublished;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить отправителя
|
// Получить отправителя
|
||||||
public UserEntity getSender() {
|
public UserEntity getUser() {
|
||||||
return sender;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Установить отправителя
|
// Установить отправителя
|
||||||
public void setSender(UserEntity sender) {
|
public void setUser(UserEntity user) {
|
||||||
this.sender = sender;
|
this.user = user;
|
||||||
|
if (!user.getMessages().contains(this)) {
|
||||||
|
user.getMessages().add(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить текст сообщения
|
// Получить текст сообщения
|
||||||
@ -77,7 +90,7 @@ public class MessageEntity extends BaseEntity {
|
|||||||
// Получить хэш-код объекта
|
// Получить хэш-код объекта
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(id, sender, text, date, isPublished);
|
return Objects.hash(id, user.getId(), text, date, isPublished);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Сравнить объекты
|
// Сравнить объекты
|
||||||
@ -89,7 +102,7 @@ public class MessageEntity extends BaseEntity {
|
|||||||
return false;
|
return false;
|
||||||
final MessageEntity other = (MessageEntity) obj;
|
final MessageEntity other = (MessageEntity) obj;
|
||||||
return Objects.equals(other.getId(), id)
|
return Objects.equals(other.getId(), id)
|
||||||
&& Objects.equals(other.getSender(), sender)
|
&& Objects.equals(other.getUser().getId(), user.getId())
|
||||||
&& Objects.equals(other.getText(), text)
|
&& Objects.equals(other.getText(), text)
|
||||||
&& Objects.equals(other.getDate(), date)
|
&& Objects.equals(other.getDate(), date)
|
||||||
&& Objects.equals(other.getIsPublished(), isPublished);
|
&& Objects.equals(other.getIsPublished(), isPublished);
|
||||||
|
@ -1,11 +1,17 @@
|
|||||||
package com.example.demo.messages.repository;
|
package com.example.demo.messages.repository;
|
||||||
|
|
||||||
import org.springframework.stereotype.Repository;
|
import java.util.List;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import org.springframework.data.repository.CrudRepository;
|
||||||
|
|
||||||
import com.example.demo.core.repository.MapRepository;
|
|
||||||
import com.example.demo.messages.model.MessageEntity;
|
import com.example.demo.messages.model.MessageEntity;
|
||||||
|
|
||||||
// Хранилище для сущности "Сообщение"
|
// Хранилище для сущности "Сообщение"
|
||||||
@Repository
|
public interface MessageRepository extends CrudRepository<MessageEntity, Long> {
|
||||||
public class MessageRepository extends MapRepository<MessageEntity> {
|
// Получить сообщение по пользователю и идентификатору
|
||||||
|
Optional<MessageEntity> findOnyByUserIdAndId(Long userId, Long id);
|
||||||
|
|
||||||
|
// Получить список сообщений по пользователю
|
||||||
|
List<MessageEntity> findByUserId(Long userId);
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
package com.example.demo.messages.service;
|
package com.example.demo.messages.service;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.stream.StreamSupport;
|
||||||
import java.util.Optional;
|
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
import com.example.demo.core.error.NotFoundException;
|
||||||
import com.example.demo.messages.model.MessageEntity;
|
import com.example.demo.messages.model.MessageEntity;
|
||||||
import com.example.demo.messages.repository.MessageRepository;
|
import com.example.demo.messages.repository.MessageRepository;
|
||||||
|
import com.example.demo.users.model.UserEntity;
|
||||||
|
import com.example.demo.users.service.UserService;
|
||||||
|
|
||||||
// Бизнес-логика для сущности "Сообщение"
|
// Бизнес-логика для сущности "Сообщение"
|
||||||
@Service
|
@Service
|
||||||
@ -16,47 +18,67 @@ public class MessageService {
|
|||||||
// Хранилище элементов
|
// Хранилище элементов
|
||||||
private final MessageRepository repository;
|
private final MessageRepository repository;
|
||||||
|
|
||||||
|
// Бизнес-логика для отправителей (пользователей)
|
||||||
|
private final UserService userService;
|
||||||
|
|
||||||
// Конструктор
|
// Конструктор
|
||||||
public MessageService(MessageRepository repository) {
|
public MessageService(MessageRepository repository, UserService userService) {
|
||||||
this.repository = repository;
|
this.repository = repository;
|
||||||
|
this.userService = userService;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить все элементы или по заданному фильтру
|
// Получить все элементы или по заданному фильтру
|
||||||
public List<MessageEntity> getAll(Long senderId) {
|
@Transactional(readOnly = true)
|
||||||
if (Objects.equals(senderId, 0L)) {
|
public List<MessageEntity> getAll(Long userId) {
|
||||||
return repository.getAll();
|
if (userId <= 0L) {
|
||||||
|
return StreamSupport.stream(repository.findAll().spliterator(), false).toList();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
userService.get(userId);
|
||||||
|
return repository.findByUserId(userId);
|
||||||
}
|
}
|
||||||
return repository.getAll().stream()
|
|
||||||
.filter(item -> item.getSender().getId().equals(senderId))
|
|
||||||
.toList();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
// Получить элемент по идентификатору
|
||||||
public MessageEntity get(Long id) {
|
@Transactional(readOnly = true)
|
||||||
return Optional.ofNullable(repository.get(id))
|
public MessageEntity get(Long userId, Long id) {
|
||||||
.orElseThrow(() -> new NotFoundException(id));
|
userService.get(userId);
|
||||||
|
return repository.findOnyByUserIdAndId(userId, id)
|
||||||
|
.orElseThrow(() -> new NotFoundException(MessageEntity.class, id));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Создать элемент
|
// Создать элемент
|
||||||
public MessageEntity create(MessageEntity entity) {
|
@Transactional
|
||||||
return repository.create(entity);
|
public MessageEntity create(Long userId, MessageEntity entity) {
|
||||||
|
if (entity == null) {
|
||||||
|
throw new IllegalArgumentException("Entity is null");
|
||||||
|
}
|
||||||
|
final UserEntity existsEntity = userService.get(userId);
|
||||||
|
entity.setUser(existsEntity);
|
||||||
|
return repository.save(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Изменить элемент
|
// Изменить элемент
|
||||||
public MessageEntity update(Long id, MessageEntity entity) {
|
@Transactional
|
||||||
final MessageEntity existsEntity = get(id);
|
public MessageEntity update(Long userId, Long id, MessageEntity entity) {
|
||||||
existsEntity.setSender(entity.getSender());
|
userService.get(userId);
|
||||||
|
final MessageEntity existsEntity = get(userId, id);
|
||||||
|
existsEntity.setUser(entity.getUser());
|
||||||
existsEntity.setText(entity.getText());
|
existsEntity.setText(entity.getText());
|
||||||
return repository.update(existsEntity);
|
return repository.save(existsEntity);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удалить элемент
|
// Удалить элемент
|
||||||
public MessageEntity delete(Long id) {
|
@Transactional
|
||||||
final MessageEntity existsEntity = get(id);
|
public MessageEntity delete(Long userId, Long id) {
|
||||||
return repository.delete(existsEntity);
|
userService.get(userId);
|
||||||
|
final MessageEntity existsEntity = get(userId, id);
|
||||||
|
repository.delete(existsEntity);
|
||||||
|
return existsEntity;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удалить все элементы
|
// Удалить все элементы
|
||||||
|
@Transactional
|
||||||
public void deleteAll() {
|
public void deleteAll() {
|
||||||
repository.deleteAll();
|
repository.deleteAll();
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,111 @@
|
|||||||
|
package com.example.demo.orders.api;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.modelmapper.ModelMapper;
|
||||||
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PutMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import com.example.demo.core.configuration.Constants;
|
||||||
|
import com.example.demo.orders.model.OrderEntity;
|
||||||
|
import com.example.demo.orders.model.OrderGrouped;
|
||||||
|
import com.example.demo.orders.service.OrderService;
|
||||||
|
import com.example.demo.types.service.TypeService;
|
||||||
|
|
||||||
|
import jakarta.validation.Valid;
|
||||||
|
|
||||||
|
// Контроллер для сущности "Заказ" (Заказ, содержащий книги)
|
||||||
|
@RestController
|
||||||
|
@RequestMapping(Constants.API_URL + "/user/{user}/order")
|
||||||
|
public class OrderController {
|
||||||
|
// Бизнес-логика для сущности "Заказ" (Заказ, содержащий книги)
|
||||||
|
private final OrderService orderService;
|
||||||
|
|
||||||
|
// Бизнес-логика для сущности "Тип" (Тип книги)
|
||||||
|
private final TypeService typeService;
|
||||||
|
|
||||||
|
// Библиотека для преобразования сущности
|
||||||
|
private final ModelMapper modelMapper;
|
||||||
|
|
||||||
|
// Конструктор
|
||||||
|
public OrderController(OrderService orderService, TypeService typeService, ModelMapper modelMapper) {
|
||||||
|
this.orderService = orderService;
|
||||||
|
this.typeService = typeService;
|
||||||
|
this.modelMapper = modelMapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Преобразовать из сущности в DTO
|
||||||
|
private OrderDto toDto(OrderEntity entity) {
|
||||||
|
return modelMapper.map(entity, OrderDto.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Преобразовать из DTO в сущность
|
||||||
|
private OrderEntity toEntity(@Valid OrderDto dto) {
|
||||||
|
final OrderEntity entity = modelMapper.map(dto, OrderEntity.class);
|
||||||
|
entity.setType(typeService.get(dto.getTypeId()));
|
||||||
|
return entity;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Преобрзовать из сущности сгруппированных заказов в DTO
|
||||||
|
private OrderGroupedDto toGroupedDto(OrderGrouped entity) {
|
||||||
|
return modelMapper.map(entity, OrderGroupedDto.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить все элементы или по заданному фильтру
|
||||||
|
@GetMapping
|
||||||
|
public List<OrderDto> getAll(
|
||||||
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@RequestParam(name = "typeId", defaultValue = "0") Long typeId) {
|
||||||
|
return orderService.getAll(userId, typeId).stream()
|
||||||
|
.map(this::toDto)
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить элемент по идентификатору
|
||||||
|
@GetMapping("/{id}")
|
||||||
|
public OrderDto get(
|
||||||
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@PathVariable(name = "id") Long id) {
|
||||||
|
return toDto(orderService.get(userId, id));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Создать элемент
|
||||||
|
@PostMapping
|
||||||
|
public OrderDto create(
|
||||||
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@RequestBody @Valid OrderDto dto) {
|
||||||
|
return toDto(orderService.create(userId, toEntity(dto)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Изменить элемент
|
||||||
|
@PutMapping("/{id}")
|
||||||
|
public OrderDto update(
|
||||||
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@PathVariable(name = "id") Long id,
|
||||||
|
@RequestBody @Valid OrderDto dto) {
|
||||||
|
return toDto(orderService.update(userId, id, toEntity(dto)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Удалить элемент
|
||||||
|
@DeleteMapping("/{id}")
|
||||||
|
public OrderDto delete(
|
||||||
|
@PathVariable(name = "user") Long userId,
|
||||||
|
@PathVariable(name = "id") Long id) {
|
||||||
|
return toDto(orderService.delete(userId, id));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить список заказов, сгруппированных по типу
|
||||||
|
@GetMapping("/total")
|
||||||
|
public List<OrderGroupedDto> getMethodName(@PathVariable(name = "user") Long userId) {
|
||||||
|
return orderService.getTotal(userId).stream()
|
||||||
|
.map(this::toGroupedDto)
|
||||||
|
.toList();
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package com.example.demo.items.api;
|
package com.example.demo.orders.api;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
|
||||||
@ -6,7 +6,7 @@ import jakarta.validation.constraints.Min;
|
|||||||
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.NotNull;
|
||||||
|
|
||||||
// DTO для сущности "Заказ" (Заказ, содержащий книги)
|
// DTO для сущности "Заказ" (Заказ, содержащий книги)
|
||||||
public class ItemDto {
|
public class OrderDto {
|
||||||
// Идентфикатор
|
// Идентфикатор
|
||||||
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
||||||
private Long id;
|
private Long id;
|
@ -0,0 +1,43 @@
|
|||||||
|
package com.example.demo.orders.api;
|
||||||
|
|
||||||
|
// DTO для заказов, сгруппированных по типу
|
||||||
|
public class OrderGroupedDto {
|
||||||
|
// Идентификатор типа
|
||||||
|
private Long typeId;
|
||||||
|
|
||||||
|
// Общая стоимость заказов
|
||||||
|
private Long totalPrice;
|
||||||
|
|
||||||
|
// Общее количество заказов
|
||||||
|
private Integer totalCount;
|
||||||
|
|
||||||
|
// Получить идентификатор типа
|
||||||
|
public Long getTypeId() {
|
||||||
|
return typeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Установить идентификатор типа
|
||||||
|
public void setTypeId(Long typeId) {
|
||||||
|
this.typeId = typeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить общую стоимость заказов
|
||||||
|
public Long getTotalPrice() {
|
||||||
|
return totalPrice;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Установить общую стоимость заказов
|
||||||
|
public void setTotalPrice(Long totalPrice) {
|
||||||
|
this.totalPrice = totalPrice;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить общее количество заказов
|
||||||
|
public Integer getTotalCount() {
|
||||||
|
return totalCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Установить общее количество заказов
|
||||||
|
public void setTotalCount(Integer totalCount) {
|
||||||
|
this.totalCount = totalCount;
|
||||||
|
}
|
||||||
|
}
|
@ -1,29 +1,45 @@
|
|||||||
package com.example.demo.items.model;
|
package com.example.demo.orders.model;
|
||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
import com.example.demo.core.model.BaseEntity;
|
import com.example.demo.core.model.BaseEntity;
|
||||||
import com.example.demo.types.model.TypeEntity;
|
import com.example.demo.types.model.TypeEntity;
|
||||||
|
import com.example.demo.users.model.UserEntity;
|
||||||
|
|
||||||
|
import jakarta.persistence.Column;
|
||||||
|
import jakarta.persistence.Entity;
|
||||||
|
import jakarta.persistence.JoinColumn;
|
||||||
|
import jakarta.persistence.ManyToOne;
|
||||||
|
import jakarta.persistence.Table;
|
||||||
|
|
||||||
// Сущность "Заказ" (Заказ, содержащий книги)
|
// Сущность "Заказ" (Заказ, содержащий книги)
|
||||||
public class ItemEntity extends BaseEntity {
|
@Entity
|
||||||
|
@Table(name = "orders")
|
||||||
|
public class OrderEntity extends BaseEntity {
|
||||||
// Тип книги
|
// Тип книги
|
||||||
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "typeId", nullable = false)
|
||||||
private TypeEntity type;
|
private TypeEntity type;
|
||||||
|
|
||||||
|
// Заказчик (пользователь)
|
||||||
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "userId", nullable = false)
|
||||||
|
private UserEntity user;
|
||||||
|
|
||||||
// Цена книги
|
// Цена книги
|
||||||
|
@Column(nullable = false)
|
||||||
private Double price;
|
private Double price;
|
||||||
|
|
||||||
// Количество книг
|
// Количество книг
|
||||||
|
@Column(nullable = false)
|
||||||
private Integer count;
|
private Integer count;
|
||||||
|
|
||||||
// Конструктор по умолчанию
|
// Конструктор по умолчанию
|
||||||
public ItemEntity() {
|
public OrderEntity() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Конструктор с параметрами для создания объекта
|
// Конструктор с параметрами для создания объекта
|
||||||
public ItemEntity(Long id, TypeEntity type, Double price, Integer count) {
|
public OrderEntity(TypeEntity type, Double price, Integer count) {
|
||||||
super(id);
|
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.price = price;
|
this.price = price;
|
||||||
this.count = count;
|
this.count = count;
|
||||||
@ -39,6 +55,19 @@ public class ItemEntity extends BaseEntity {
|
|||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Получить заказчика (пользователя)
|
||||||
|
public UserEntity getUser() {
|
||||||
|
return user;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Установить заказчика (пользователя)
|
||||||
|
public void setUser(UserEntity user) {
|
||||||
|
this.user = user;
|
||||||
|
if (!user.getOrders().contains(this)) {
|
||||||
|
user.getOrders().add(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Получить стоимость книги
|
// Получить стоимость книги
|
||||||
public Double getPrice() {
|
public Double getPrice() {
|
||||||
return price;
|
return price;
|
||||||
@ -62,7 +91,7 @@ public class ItemEntity extends BaseEntity {
|
|||||||
// Получить хэш-код объекта
|
// Получить хэш-код объекта
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(id, type, price, count);
|
return Objects.hash(id, type, user.getId(), price, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Сравнить объекты
|
// Сравнить объекты
|
||||||
@ -72,9 +101,10 @@ public class ItemEntity extends BaseEntity {
|
|||||||
return true;
|
return true;
|
||||||
if (obj == null || getClass() != obj.getClass())
|
if (obj == null || getClass() != obj.getClass())
|
||||||
return false;
|
return false;
|
||||||
final ItemEntity other = (ItemEntity) obj;
|
final OrderEntity other = (OrderEntity) obj;
|
||||||
return Objects.equals(other.getId(), id)
|
return Objects.equals(other.getId(), id)
|
||||||
&& Objects.equals(other.getType(), type)
|
&& Objects.equals(other.getType(), type)
|
||||||
|
&& Objects.equals(other.getUser().getId(), user.getId())
|
||||||
&& Objects.equals(other.getPrice(), price)
|
&& Objects.equals(other.getPrice(), price)
|
||||||
&& Objects.equals(other.getCount(), count);
|
&& Objects.equals(other.getCount(), count);
|
||||||
}
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package com.example.demo.orders.model;
|
||||||
|
|
||||||
|
import com.example.demo.types.model.TypeEntity;
|
||||||
|
|
||||||
|
// Заказы, сгруппированные по типу
|
||||||
|
public interface OrderGrouped {
|
||||||
|
// Тип заказов
|
||||||
|
TypeEntity getType();
|
||||||
|
|
||||||
|
// Общая сумма заказов
|
||||||
|
double getTotalPrice();
|
||||||
|
|
||||||
|
// Общее количество заказов
|
||||||
|
int getTotalCount();
|
||||||
|
}
|
@ -0,0 +1,38 @@
|
|||||||
|
package com.example.demo.orders.repository;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.springframework.data.repository.CrudRepository;
|
||||||
|
import org.springframework.data.jpa.repository.Query;
|
||||||
|
|
||||||
|
import com.example.demo.orders.model.OrderEntity;
|
||||||
|
import com.example.demo.orders.model.OrderGrouped;
|
||||||
|
|
||||||
|
// Хранилище для сущности "Заказ" (Заказ, содержащий книги)
|
||||||
|
public interface OrderRepository extends CrudRepository<OrderEntity, Long> {
|
||||||
|
// Получить заказ по пользователю и идентификатору
|
||||||
|
Optional<OrderEntity> findOneByUserIdAndId(Long userId, Long id);
|
||||||
|
|
||||||
|
// Получить список заказов по пользователю
|
||||||
|
List<OrderEntity> findByUserId(Long userId);
|
||||||
|
|
||||||
|
// Получить список заказов по типу
|
||||||
|
List<OrderEntity> findByUserIdAndTypeId(Long userId, Long typeId);
|
||||||
|
|
||||||
|
// Получить заказы, сгруппированные по типу
|
||||||
|
// select
|
||||||
|
// type.name,
|
||||||
|
// coalesce(sum(order.price), 0),
|
||||||
|
// coalesce(sum(order.count), 0)
|
||||||
|
// from types as type
|
||||||
|
// left join orders as order on type.id = order.type_id and order.user_id = ?
|
||||||
|
// group by type.name order by type.id
|
||||||
|
@Query("select "
|
||||||
|
+ "t as type, "
|
||||||
|
+ "coalesce(sum(o.price), 0) as totalPrice, "
|
||||||
|
+ "coalesce(sum(o.count), 0) as totalCount "
|
||||||
|
+ "from TypeEntity t left join OrderEntity o on o.type = t and o.user.id = ?1 "
|
||||||
|
+ "group by t order by t.id")
|
||||||
|
List<OrderGrouped> getOrdersTotalByType(long userId);
|
||||||
|
}
|
@ -0,0 +1,93 @@
|
|||||||
|
package com.example.demo.orders.service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
import com.example.demo.core.error.NotFoundException;
|
||||||
|
import com.example.demo.orders.model.OrderEntity;
|
||||||
|
import com.example.demo.orders.model.OrderGrouped;
|
||||||
|
import com.example.demo.orders.repository.OrderRepository;
|
||||||
|
import com.example.demo.users.model.UserEntity;
|
||||||
|
import com.example.demo.users.service.UserService;
|
||||||
|
|
||||||
|
// Бизнес-логика для сущности "Заказ" (Заказ, содержащий книги)
|
||||||
|
@Service
|
||||||
|
public class OrderService {
|
||||||
|
// Хранилище элементов
|
||||||
|
private final OrderRepository repository;
|
||||||
|
|
||||||
|
// Бизнес-логика для заказчиков (пользователей)
|
||||||
|
private final UserService userService;
|
||||||
|
|
||||||
|
// Конструктор
|
||||||
|
public OrderService(OrderRepository repository, UserService userService) {
|
||||||
|
this.repository = repository;
|
||||||
|
this.userService = userService;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить все элементы или по заданному фильтру
|
||||||
|
@Transactional(readOnly = true)
|
||||||
|
public List<OrderEntity> getAll(Long userId, Long typeId) {
|
||||||
|
userService.get(userId);
|
||||||
|
if (typeId <= 0L) {
|
||||||
|
return repository.findByUserId(userId);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return repository.findByUserIdAndTypeId(userId, typeId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить элемент по идентификатору
|
||||||
|
@Transactional(readOnly = true)
|
||||||
|
public OrderEntity get(Long userId, Long id) {
|
||||||
|
userService.get(userId);
|
||||||
|
return repository.findOneByUserIdAndId(userId, id)
|
||||||
|
.orElseThrow(() -> new NotFoundException(OrderEntity.class, id));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Создать элемент
|
||||||
|
@Transactional
|
||||||
|
public OrderEntity create(Long userId, OrderEntity entity) {
|
||||||
|
if (entity == null) {
|
||||||
|
throw new IllegalArgumentException("Entity is null");
|
||||||
|
}
|
||||||
|
final UserEntity existsUser = userService.get(userId);
|
||||||
|
entity.setUser(existsUser);
|
||||||
|
return repository.save(entity);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Изменить элемент
|
||||||
|
@Transactional
|
||||||
|
public OrderEntity update(Long userId, Long id, OrderEntity entity) {
|
||||||
|
userService.get(userId);
|
||||||
|
final OrderEntity existsEntity = get(userId, id);
|
||||||
|
existsEntity.setType(entity.getType());
|
||||||
|
existsEntity.setPrice(entity.getPrice());
|
||||||
|
existsEntity.setCount(entity.getCount());
|
||||||
|
return repository.save(existsEntity);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Удалить элемент
|
||||||
|
@Transactional
|
||||||
|
public OrderEntity delete(Long userId, Long id) {
|
||||||
|
userService.get(userId);
|
||||||
|
final OrderEntity existsEntity = get(userId, id);
|
||||||
|
repository.delete(existsEntity);
|
||||||
|
return existsEntity;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Удалить все элементы
|
||||||
|
@Transactional
|
||||||
|
public void deleteAll() {
|
||||||
|
repository.deleteAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить список заказов, сгруппированных по типу
|
||||||
|
@Transactional(readOnly = true)
|
||||||
|
public List<OrderGrouped> getTotal(long userId) {
|
||||||
|
userService.get(userId);
|
||||||
|
return repository.getOrdersTotalByType(userId);
|
||||||
|
}
|
||||||
|
}
|
@ -1,23 +0,0 @@
|
|||||||
package com.example.demo.speaker.api;
|
|
||||||
|
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
import com.example.demo.speaker.service.SpeakerService;
|
|
||||||
|
|
||||||
@RestController
|
|
||||||
public class SpeakerController {
|
|
||||||
private final SpeakerService speakerService;
|
|
||||||
|
|
||||||
public SpeakerController(SpeakerService speakerService) {
|
|
||||||
this.speakerService = speakerService;
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping
|
|
||||||
public String hello(
|
|
||||||
@RequestParam(value = "name", defaultValue = "Мир") String name,
|
|
||||||
@RequestParam(value = "lang", defaultValue = "ru") String lang) {
|
|
||||||
return speakerService.say(name, lang);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
package com.example.demo.speaker.configuration;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
|
|
||||||
import com.example.demo.speaker.domain.Speaker;
|
|
||||||
import com.example.demo.speaker.domain.SpeakerEng;
|
|
||||||
import com.example.demo.speaker.domain.SpeakerRus;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
public class SpeakerConfiguration {
|
|
||||||
private final Logger log = LoggerFactory.getLogger(SpeakerConfiguration.class);
|
|
||||||
|
|
||||||
@Bean(value = "ru", initMethod = "init", destroyMethod = "destroy")
|
|
||||||
public SpeakerRus createRusSpeaker() {
|
|
||||||
log.info("Call createRusSpeaker()");
|
|
||||||
return new SpeakerRus();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean(value = "en")
|
|
||||||
public Speaker createEngSpeaker() {
|
|
||||||
log.info("Call createEngSpeaker()");
|
|
||||||
return new SpeakerEng();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
package com.example.demo.speaker.domain;
|
|
||||||
|
|
||||||
public interface Speaker {
|
|
||||||
String say();
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
package com.example.demo.speaker.domain;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
|
|
||||||
import jakarta.annotation.PostConstruct;
|
|
||||||
import jakarta.annotation.PreDestroy;
|
|
||||||
|
|
||||||
@Component(value = "de")
|
|
||||||
public class SpeakerDeu implements Speaker {
|
|
||||||
private final Logger log = LoggerFactory.getLogger(SpeakerDeu.class);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String say() {
|
|
||||||
return "Hallo";
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostConstruct
|
|
||||||
public void init() {
|
|
||||||
log.info("SpeakerDeu.init()");
|
|
||||||
}
|
|
||||||
|
|
||||||
@PreDestroy
|
|
||||||
public void destroy() {
|
|
||||||
log.info("SpeakerDeu.destroy()");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,26 +0,0 @@
|
|||||||
package com.example.demo.speaker.domain;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
import org.springframework.beans.factory.DisposableBean;
|
|
||||||
import org.springframework.beans.factory.InitializingBean;
|
|
||||||
|
|
||||||
public class SpeakerEng implements Speaker, InitializingBean, DisposableBean {
|
|
||||||
private final Logger log = LoggerFactory.getLogger(SpeakerEng.class);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String say() {
|
|
||||||
return "Hello";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void afterPropertiesSet() {
|
|
||||||
log.info("SpeakerEng.afterPropertiesSet()");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void destroy() {
|
|
||||||
log.info("SpeakerEng.destroy()");
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
package com.example.demo.speaker.domain;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
public class SpeakerRus implements Speaker {
|
|
||||||
private final Logger log = LoggerFactory.getLogger(SpeakerRus.class);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String say() {
|
|
||||||
return "Привет";
|
|
||||||
}
|
|
||||||
|
|
||||||
public void init() {
|
|
||||||
log.info("SpeakerRus.init()");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void destroy() {
|
|
||||||
log.info("SpeakerRus.destroy()");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
package com.example.demo.speaker.service;
|
|
||||||
|
|
||||||
import org.springframework.context.ApplicationContext;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import com.example.demo.speaker.domain.Speaker;
|
|
||||||
|
|
||||||
@Service
|
|
||||||
public class SpeakerService {
|
|
||||||
private final ApplicationContext applicationContext;
|
|
||||||
|
|
||||||
public SpeakerService(ApplicationContext applicationContext) {
|
|
||||||
this.applicationContext = applicationContext;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String say(String name, String lang) {
|
|
||||||
@SuppressWarnings("null")
|
|
||||||
final Speaker speaker = (Speaker) applicationContext.getBean(lang);
|
|
||||||
return String.format("%s, %s!", speaker.say(), name);
|
|
||||||
}
|
|
||||||
}
|
|
@ -47,7 +47,9 @@ public class TypeController {
|
|||||||
// Получить все элементы
|
// Получить все элементы
|
||||||
@GetMapping
|
@GetMapping
|
||||||
public List<TypeDto> getAll() {
|
public List<TypeDto> getAll() {
|
||||||
return typeService.getAll().stream().map(this::toDto).toList();
|
return typeService.getAll().stream()
|
||||||
|
.map(this::toDto)
|
||||||
|
.toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
// Получить элемент по идентификатору
|
||||||
@ -64,7 +66,9 @@ public class TypeController {
|
|||||||
|
|
||||||
// Изменить элемент
|
// Изменить элемент
|
||||||
@PutMapping("/{id}")
|
@PutMapping("/{id}")
|
||||||
public TypeDto update(@PathVariable(name = "id") Long id, @RequestBody @Valid TypeDto dto) {
|
public TypeDto update(
|
||||||
|
@PathVariable(name = "id") Long id,
|
||||||
|
@RequestBody @Valid TypeDto dto) {
|
||||||
return toDto(typeService.update(id, toEntity(dto)));
|
return toDto(typeService.update(id, toEntity(dto)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@ package com.example.demo.types.api;
|
|||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
|
import jakarta.validation.constraints.Size;
|
||||||
|
|
||||||
// DTO для сущности "Тип" (Тип книги)
|
// DTO для сущности "Тип" (Тип книги)
|
||||||
public class TypeDto {
|
public class TypeDto {
|
||||||
@ -12,6 +13,7 @@ public class TypeDto {
|
|||||||
|
|
||||||
// Название типа
|
// Название типа
|
||||||
@NotBlank
|
@NotBlank
|
||||||
|
@Size(min = 5, max = 50)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
// Получить идентификатор
|
// Получить идентификатор
|
||||||
|
@ -4,19 +4,24 @@ import java.util.Objects;
|
|||||||
|
|
||||||
import com.example.demo.core.model.BaseEntity;
|
import com.example.demo.core.model.BaseEntity;
|
||||||
|
|
||||||
|
import jakarta.persistence.Entity;
|
||||||
|
import jakarta.persistence.Table;
|
||||||
|
import jakarta.persistence.Column;
|
||||||
|
|
||||||
// Сущность "Тип" (Тип книги)
|
// Сущность "Тип" (Тип книги)
|
||||||
|
@Entity
|
||||||
|
@Table(name = "types")
|
||||||
public class TypeEntity extends BaseEntity {
|
public class TypeEntity extends BaseEntity {
|
||||||
// Название типа
|
// Название типа
|
||||||
|
@Column(nullable = false, unique = true, length = 50)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
// Конструктор по умолчанию
|
// Конструктор по умолчанию
|
||||||
public TypeEntity() {
|
public TypeEntity() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Конструктор с параметрами для создания объекта
|
// Конструктор с параметрами для создания объекта
|
||||||
public TypeEntity(Long id, String name) {
|
public TypeEntity(String name) {
|
||||||
super(id);
|
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
package com.example.demo.types.repository;
|
package com.example.demo.types.repository;
|
||||||
|
|
||||||
import org.springframework.stereotype.Repository;
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import org.springframework.data.repository.CrudRepository;
|
||||||
|
|
||||||
import com.example.demo.core.repository.MapRepository;
|
|
||||||
import com.example.demo.types.model.TypeEntity;
|
import com.example.demo.types.model.TypeEntity;
|
||||||
|
|
||||||
// Хранилище для сущности "Тип" (Тип книги)
|
// Хранилище для сущности "Тип" (Тип книги)
|
||||||
@Repository
|
public interface TypeRepository extends CrudRepository<TypeEntity, Long> {
|
||||||
public class TypeRepository extends MapRepository<TypeEntity> {
|
// Найти тип по названию (без учета регистра)
|
||||||
|
Optional<TypeEntity> findByNameIgnoreCase(String name);
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
package com.example.demo.types.service;
|
package com.example.demo.types.service;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Optional;
|
import java.util.stream.StreamSupport;
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
import com.example.demo.core.error.NotFoundException;
|
||||||
import com.example.demo.types.model.TypeEntity;
|
import com.example.demo.types.model.TypeEntity;
|
||||||
@ -20,36 +21,56 @@ public class TypeService {
|
|||||||
this.repository = repository;
|
this.repository = repository;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Проверка уникальности названия типа
|
||||||
|
private void checkName(String name) {
|
||||||
|
if (repository.findByNameIgnoreCase(name).isPresent()) {
|
||||||
|
throw new IllegalArgumentException(
|
||||||
|
String.format("Type with name %s is already exists", name));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Получить все элементы
|
// Получить все элементы
|
||||||
|
@Transactional(readOnly = true)
|
||||||
public List<TypeEntity> getAll() {
|
public List<TypeEntity> getAll() {
|
||||||
return repository.getAll();
|
return StreamSupport.stream(repository.findAll().spliterator(), false).toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
// Получить элемент по идентификатору
|
||||||
|
@Transactional(readOnly = true)
|
||||||
public TypeEntity get(Long id) {
|
public TypeEntity get(Long id) {
|
||||||
return Optional.ofNullable(repository.get(id))
|
return repository.findById(id)
|
||||||
.orElseThrow(() -> new NotFoundException(id));
|
.orElseThrow(() -> new NotFoundException(TypeEntity.class, id));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Создать элемент
|
// Создать элемент
|
||||||
|
@Transactional
|
||||||
public TypeEntity create(TypeEntity entity) {
|
public TypeEntity create(TypeEntity entity) {
|
||||||
return repository.create(entity);
|
if (entity == null) {
|
||||||
|
throw new IllegalArgumentException("Entity is null");
|
||||||
|
}
|
||||||
|
checkName(entity.getName());
|
||||||
|
return repository.save(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Изменить элемент
|
// Изменить элемент
|
||||||
|
@Transactional
|
||||||
public TypeEntity update(Long id, TypeEntity entity) {
|
public TypeEntity update(Long id, TypeEntity entity) {
|
||||||
final TypeEntity existsEntity = get(id);
|
final TypeEntity existsEntity = get(id);
|
||||||
|
checkName(entity.getName());
|
||||||
existsEntity.setName(entity.getName());
|
existsEntity.setName(entity.getName());
|
||||||
return repository.update(existsEntity);
|
return repository.save(existsEntity);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удалить элемент
|
// Удалить элемент
|
||||||
|
@Transactional
|
||||||
public TypeEntity delete(Long id) {
|
public TypeEntity delete(Long id) {
|
||||||
final TypeEntity existsEntity = get(id);
|
final TypeEntity existsEntity = get(id);
|
||||||
return repository.delete(existsEntity);
|
repository.delete(existsEntity);
|
||||||
|
return existsEntity;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удалить все элементы
|
// Удалить все элементы
|
||||||
|
@Transactional
|
||||||
public void deleteAll() {
|
public void deleteAll() {
|
||||||
repository.deleteAll();
|
repository.deleteAll();
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,9 @@ public class UserController {
|
|||||||
// Получить все элементы
|
// Получить все элементы
|
||||||
@GetMapping
|
@GetMapping
|
||||||
public List<UserDto> getAll() {
|
public List<UserDto> getAll() {
|
||||||
return userService.getAll().stream().map(this::toDto).toList();
|
return userService.getAll().stream()
|
||||||
|
.map(this::toDto)
|
||||||
|
.toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
// Получить элемент по идентификатору
|
||||||
@ -64,7 +66,9 @@ public class UserController {
|
|||||||
|
|
||||||
// Изменить элемент
|
// Изменить элемент
|
||||||
@PutMapping("/{id}")
|
@PutMapping("/{id}")
|
||||||
public UserDto update(@PathVariable(name = "id") Long id, @RequestBody @Valid UserDto dto) {
|
public UserDto update(
|
||||||
|
@PathVariable(name = "id") Long id,
|
||||||
|
@RequestBody @Valid UserDto dto) {
|
||||||
return toDto(userService.update(id, toEntity(dto)));
|
return toDto(userService.update(id, toEntity(dto)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@ package com.example.demo.users.api;
|
|||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
|
||||||
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotBlank;
|
||||||
|
import jakarta.validation.constraints.Size;
|
||||||
|
|
||||||
// DTO для сущности "Пользователь"
|
// DTO для сущности "Пользователь"
|
||||||
public class UserDto {
|
public class UserDto {
|
||||||
@ -12,10 +13,12 @@ public class UserDto {
|
|||||||
|
|
||||||
// Имя/логин пользователя
|
// Имя/логин пользователя
|
||||||
@NotBlank
|
@NotBlank
|
||||||
|
@Size(min = 3, max = 50)
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
// Пароль пользователя
|
// Пароль пользователя
|
||||||
@NotBlank
|
@NotBlank
|
||||||
|
@Size(min = 8)
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
// Электронный адрес почты пользователя
|
// Электронный адрес почты пользователя
|
||||||
|
@ -1,28 +1,52 @@
|
|||||||
package com.example.demo.users.model;
|
package com.example.demo.users.model;
|
||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
import com.example.demo.core.model.BaseEntity;
|
import com.example.demo.core.model.BaseEntity;
|
||||||
|
import com.example.demo.orders.model.OrderEntity;
|
||||||
|
import com.example.demo.messages.model.MessageEntity;
|
||||||
|
|
||||||
|
import jakarta.persistence.Entity;
|
||||||
|
import jakarta.persistence.Table;
|
||||||
|
import jakarta.persistence.Column;
|
||||||
|
import jakarta.persistence.OneToMany;
|
||||||
|
import jakarta.persistence.CascadeType;
|
||||||
|
import jakarta.persistence.OrderBy;
|
||||||
|
|
||||||
// Сущность "Пользователь"
|
// Сущность "Пользователь"
|
||||||
|
@Entity
|
||||||
|
@Table(name = "users")
|
||||||
public class UserEntity extends BaseEntity {
|
public class UserEntity extends BaseEntity {
|
||||||
// Имя/логин пользователя
|
// Имя/логин пользователя
|
||||||
|
@Column(nullable = false, unique = true, length = 50)
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
// Пароль пользователя
|
// Пароль пользователя
|
||||||
|
@Column(nullable = false, length = 50)
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
// Электронный адрес почты пользователя
|
// Электронный адрес почты пользователя
|
||||||
|
@Column(nullable = false, unique = true)
|
||||||
private String email;
|
private String email;
|
||||||
|
|
||||||
|
// Список заказов пользователя
|
||||||
|
@OneToMany(mappedBy = "user", cascade = CascadeType.ALL)
|
||||||
|
@OrderBy("id ASC")
|
||||||
|
private Set<OrderEntity> orders = new HashSet<>();
|
||||||
|
|
||||||
|
// Список сообщений пользователя
|
||||||
|
@OneToMany(mappedBy = "user", cascade = CascadeType.ALL)
|
||||||
|
@OrderBy("id ASC")
|
||||||
|
private Set<MessageEntity> messages = new HashSet<>();
|
||||||
|
|
||||||
// Конструктор по умолчанию
|
// Конструктор по умолчанию
|
||||||
public UserEntity() {
|
public UserEntity() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Конструктор с параметрами для создания объекта
|
// Конструктор с параметрами для создания объекта
|
||||||
public UserEntity(Long id, String username, String password, String email) {
|
public UserEntity(String username, String password, String email) {
|
||||||
super(id);
|
|
||||||
this.username = username;
|
this.username = username;
|
||||||
this.password = password;
|
this.password = password;
|
||||||
this.email = email;
|
this.email = email;
|
||||||
@ -58,10 +82,36 @@ public class UserEntity extends BaseEntity {
|
|||||||
this.email = email;
|
this.email = email;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Получить список заказов
|
||||||
|
public Set<OrderEntity> getOrders() {
|
||||||
|
return orders;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Добавить заказ
|
||||||
|
public void addOrder(OrderEntity order) {
|
||||||
|
if (order.getUser() != this) {
|
||||||
|
order.setUser(this);
|
||||||
|
}
|
||||||
|
orders.add(order);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Получить список сообщений
|
||||||
|
public Set<MessageEntity> getMessages() {
|
||||||
|
return messages;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Добавить сообщение
|
||||||
|
public void addMessage(MessageEntity message) {
|
||||||
|
if (message.getUser() != this) {
|
||||||
|
message.setUser(this);
|
||||||
|
}
|
||||||
|
messages.add(message);
|
||||||
|
}
|
||||||
|
|
||||||
// Получить хэш-код объекта
|
// Получить хэш-код объекта
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(id, username, password, email);
|
return Objects.hash(id, username, password, email, orders, messages);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Сравнить объекты
|
// Сравнить объекты
|
||||||
@ -75,6 +125,8 @@ public class UserEntity extends BaseEntity {
|
|||||||
return Objects.equals(other.getId(), id)
|
return Objects.equals(other.getId(), id)
|
||||||
&& Objects.equals(other.getUsername(), username)
|
&& Objects.equals(other.getUsername(), username)
|
||||||
&& Objects.equals(other.getPassword(), password)
|
&& Objects.equals(other.getPassword(), password)
|
||||||
&& Objects.equals(other.getEmail(), email);
|
&& Objects.equals(other.getEmail(), email)
|
||||||
|
&& Objects.equals(other.getOrders(), orders)
|
||||||
|
&& Objects.equals(other.getMessages(), messages);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,16 @@
|
|||||||
package com.example.demo.users.repository;
|
package com.example.demo.users.repository;
|
||||||
|
|
||||||
import org.springframework.stereotype.Repository;
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import org.springframework.data.repository.CrudRepository;
|
||||||
|
|
||||||
import com.example.demo.core.repository.MapRepository;
|
|
||||||
import com.example.demo.users.model.UserEntity;
|
import com.example.demo.users.model.UserEntity;
|
||||||
|
|
||||||
// Хранилище для сущности "Пользователь"
|
// Хранилище для сущности "Пользователь"
|
||||||
@Repository
|
public interface UserRepository extends CrudRepository<UserEntity, Long> {
|
||||||
public class UserRepository extends MapRepository<UserEntity> {
|
// Получить пользователя по имени/логину
|
||||||
|
Optional<UserEntity> findByUsername(String username);
|
||||||
|
|
||||||
|
// Получить пользователя по адресу электронной почты
|
||||||
|
Optional<UserEntity> findByEmail(String email);
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
package com.example.demo.users.service;
|
package com.example.demo.users.service;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Optional;
|
import java.util.stream.StreamSupport;
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
import com.example.demo.core.error.NotFoundException;
|
||||||
import com.example.demo.users.model.UserEntity;
|
import com.example.demo.users.model.UserEntity;
|
||||||
@ -20,38 +21,66 @@ public class UserService {
|
|||||||
this.repository = repository;
|
this.repository = repository;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Проверка уникальности имени/логина пользователя
|
||||||
|
private void checkUsername(String username) {
|
||||||
|
if (repository.findByUsername(username).isPresent()) {
|
||||||
|
throw new IllegalArgumentException(
|
||||||
|
String.format("User with username %s is already exists", username));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Проверка уникальности адреса электронной почты пользователя
|
||||||
|
private void checkEmail(String email) {
|
||||||
|
if (repository.findByEmail(email).isPresent()) {
|
||||||
|
throw new IllegalArgumentException(
|
||||||
|
String.format("User with email %s is already exists", email));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Получить все элементы
|
// Получить все элементы
|
||||||
|
@Transactional(readOnly = true)
|
||||||
public List<UserEntity> getAll() {
|
public List<UserEntity> getAll() {
|
||||||
return repository.getAll();
|
return StreamSupport.stream(repository.findAll().spliterator(), false).toList();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Получить элемент по идентификатору
|
// Получить элемент по идентификатору
|
||||||
|
@Transactional(readOnly = true)
|
||||||
public UserEntity get(Long id) {
|
public UserEntity get(Long id) {
|
||||||
return Optional.ofNullable(repository.get(id))
|
return repository.findById(id)
|
||||||
.orElseThrow(() -> new NotFoundException(id));
|
.orElseThrow(() -> new NotFoundException(UserEntity.class, id));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Создать элемент
|
// Создать элемент
|
||||||
|
@Transactional
|
||||||
public UserEntity create(UserEntity entity) {
|
public UserEntity create(UserEntity entity) {
|
||||||
return repository.create(entity);
|
if (entity == null) {
|
||||||
|
throw new IllegalArgumentException("Entity is null");
|
||||||
|
}
|
||||||
|
checkUsername(entity.getUsername());
|
||||||
|
checkEmail(entity.getEmail());
|
||||||
|
return repository.save(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Изменить элемент
|
// Изменить элемент
|
||||||
|
@Transactional
|
||||||
public UserEntity update(Long id, UserEntity entity) {
|
public UserEntity update(Long id, UserEntity entity) {
|
||||||
final UserEntity existsEntity = get(id);
|
final UserEntity existsEntity = get(id);
|
||||||
existsEntity.setUsername(entity.getUsername());
|
existsEntity.setUsername(entity.getUsername());
|
||||||
existsEntity.setPassword(entity.getPassword());
|
existsEntity.setPassword(entity.getPassword());
|
||||||
existsEntity.setEmail(entity.getEmail());
|
existsEntity.setEmail(entity.getEmail());
|
||||||
return repository.update(existsEntity);
|
return repository.save(existsEntity);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удалить элемент
|
// Удалить элемент
|
||||||
|
@Transactional
|
||||||
public UserEntity delete(Long id) {
|
public UserEntity delete(Long id) {
|
||||||
final UserEntity existsEntity = get(id);
|
final UserEntity existsEntity = get(id);
|
||||||
return repository.delete(existsEntity);
|
repository.delete(existsEntity);
|
||||||
|
return existsEntity;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удалить все элементы
|
// Удалить все элементы
|
||||||
|
@Transactional
|
||||||
public void deleteAll() {
|
public void deleteAll() {
|
||||||
repository.deleteAll();
|
repository.deleteAll();
|
||||||
}
|
}
|
||||||
|
@ -1 +1,20 @@
|
|||||||
|
# Server
|
||||||
|
spring.main.banner-mode=off
|
||||||
|
server.port=8080
|
||||||
|
|
||||||
|
# Logger settings
|
||||||
|
# Available levels are: TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF
|
||||||
|
logging.level.com.example.demo=DEBUG
|
||||||
|
|
||||||
|
# JPA Settings
|
||||||
|
spring.datasource.url=jdbc:h2:file:./data
|
||||||
|
spring.datasource.username=factorino
|
||||||
|
spring.datasource.password=password
|
||||||
|
spring.datasource.driver-class-name=org.h2.Driver
|
||||||
|
spring.jpa.hibernate.ddl-auto=create
|
||||||
|
spring.jpa.open-in-view=false
|
||||||
|
# spring.jpa.show-sql=true
|
||||||
|
# spring.jpa.properties.hibernate.format_sql=true
|
||||||
|
|
||||||
|
# H2 console
|
||||||
|
spring.h2.console.enabled=true
|
@ -1,72 +0,0 @@
|
|||||||
package com.example.demo;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Assertions;
|
|
||||||
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
|
||||||
import com.example.demo.items.model.ItemEntity;
|
|
||||||
import com.example.demo.items.service.ItemService;
|
|
||||||
import com.example.demo.types.model.TypeEntity;
|
|
||||||
import com.example.demo.types.service.TypeService;
|
|
||||||
|
|
||||||
@SpringBootTest
|
|
||||||
@TestMethodOrder(OrderAnnotation.class)
|
|
||||||
public class ItemServiceTests {
|
|
||||||
@Autowired
|
|
||||||
private ItemService itemService;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private TypeService typeService;
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void getTest() {
|
|
||||||
Assertions.assertThrows(NotFoundException.class, () -> itemService.get(0L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(1)
|
|
||||||
void createTest() {
|
|
||||||
final TypeEntity type = typeService.create(new TypeEntity(null, "Protection"));
|
|
||||||
itemService.create(new ItemEntity(null, type, 50.00, 20));
|
|
||||||
itemService.create(new ItemEntity(null, type, 12.00, 3));
|
|
||||||
final ItemEntity last = itemService.create(new ItemEntity(null, type, 15.00, 6));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, itemService.getAll(0L).size());
|
|
||||||
Assertions.assertEquals(last, itemService.get(3L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(2)
|
|
||||||
void updateTest() {
|
|
||||||
final TypeEntity type = typeService.create(new TypeEntity(null, "Sharpness"));
|
|
||||||
final ItemEntity entity = itemService.get(3L);
|
|
||||||
final Double oldPrice = entity.getPrice();
|
|
||||||
final ItemEntity newEntity = itemService.update(3L, new ItemEntity(null, type, 30.00, 6));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, itemService.getAll(0L).size());
|
|
||||||
Assertions.assertEquals(newEntity, itemService.get(3L));
|
|
||||||
Assertions.assertEquals(30.00, newEntity.getPrice());
|
|
||||||
Assertions.assertNotEquals(oldPrice, newEntity.getPrice());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(3)
|
|
||||||
void deleteTest() {
|
|
||||||
itemService.delete(3L);
|
|
||||||
Assertions.assertEquals(2, itemService.getAll(0L).size());
|
|
||||||
Assertions.assertThrows(NotFoundException.class, () -> itemService.get(3L));
|
|
||||||
|
|
||||||
final TypeEntity type = typeService.create(new TypeEntity(null, "Protection"));
|
|
||||||
final ItemEntity newEntity = itemService.create(new ItemEntity(null, type, 50.00, 10));
|
|
||||||
Assertions.assertEquals(3, itemService.getAll(0L).size());
|
|
||||||
Assertions.assertEquals(4L, newEntity.getId());
|
|
||||||
|
|
||||||
typeService.deleteAll();
|
|
||||||
itemService.deleteAll();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,74 +0,0 @@
|
|||||||
package com.example.demo;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Assertions;
|
|
||||||
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
|
||||||
import com.example.demo.messages.model.MessageEntity;
|
|
||||||
import com.example.demo.messages.service.MessageService;
|
|
||||||
import com.example.demo.users.model.UserEntity;
|
|
||||||
import com.example.demo.users.service.UserService;
|
|
||||||
|
|
||||||
@SpringBootTest
|
|
||||||
@TestMethodOrder(OrderAnnotation.class)
|
|
||||||
public class MessageServiceTests {
|
|
||||||
@Autowired
|
|
||||||
private MessageService messageService;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private UserService userService;
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void getTest() {
|
|
||||||
Assertions.assertThrows(NotFoundException.class, () -> messageService.get(0L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(1)
|
|
||||||
void createTest() {
|
|
||||||
final UserEntity sender = userService.create(new UserEntity(null, "User1", "password1", "mail1@gmail.com"));
|
|
||||||
messageService.create(new MessageEntity(null, sender, "Message1", LocalDateTime.now(), false));
|
|
||||||
messageService.create(new MessageEntity(null, sender, "Message2", LocalDateTime.now(), false));
|
|
||||||
final MessageEntity last = messageService.create(new MessageEntity(null, sender, "Message3", LocalDateTime.now(), false));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, messageService.getAll(0l).size());
|
|
||||||
Assertions.assertEquals(last, messageService.get(3L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(2)
|
|
||||||
void updateTest() {
|
|
||||||
final UserEntity sender = userService.create(new UserEntity(null, "TESTuser", "password", "mail@gmail.com"));
|
|
||||||
final MessageEntity entity = messageService.get(3L);
|
|
||||||
final String oldText = entity.getText();
|
|
||||||
final MessageEntity newEntity = messageService.update(3L, new MessageEntity(1L, sender, "textMessage", LocalDateTime.now(), false));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, messageService.getAll(0L).size());
|
|
||||||
Assertions.assertEquals(newEntity, messageService.get(3L));
|
|
||||||
Assertions.assertEquals("textMessage", newEntity.getText());
|
|
||||||
Assertions.assertNotEquals(oldText, newEntity.getText());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(3)
|
|
||||||
void deleteTest() {
|
|
||||||
messageService.delete(3L);
|
|
||||||
Assertions.assertEquals(2, messageService.getAll(0L).size());
|
|
||||||
Assertions.assertThrows(NotFoundException.class, () -> messageService.get(3L));
|
|
||||||
|
|
||||||
final UserEntity sender = userService.create(new UserEntity(null, "User1", "password1", "mail1@gmail.com"));
|
|
||||||
final MessageEntity newEntity = messageService.create(new MessageEntity(null, sender, "Message", LocalDateTime.now(), false));
|
|
||||||
Assertions.assertEquals(3, messageService.getAll(0L).size());
|
|
||||||
Assertions.assertEquals(4L, newEntity.getId());
|
|
||||||
|
|
||||||
userService.deleteAll();
|
|
||||||
messageService.deleteAll();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
package com.example.demo;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Assertions;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
||||||
|
|
||||||
import com.example.demo.speaker.service.SpeakerService;
|
|
||||||
|
|
||||||
@SpringBootTest
|
|
||||||
class SpeakerServiceTests {
|
|
||||||
@Autowired
|
|
||||||
SpeakerService speakerService;
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testSpeakerRus() {
|
|
||||||
final String res = speakerService.say("Мир", "ru");
|
|
||||||
Assertions.assertEquals("Привет, Мир!", res);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testSpeakerEng() {
|
|
||||||
final String res = speakerService.say("World", "en");
|
|
||||||
Assertions.assertEquals("Hello, World!", res);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testSpeakerDeu() {
|
|
||||||
final String res = speakerService.say("Welt", "de");
|
|
||||||
Assertions.assertEquals("Hallo, Welt!", res);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testSpeakerErrorWired() {
|
|
||||||
Assertions.assertThrows(NoSuchBeanDefinitionException.class, () -> speakerService.say("Мир", "rus"));
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,12 +1,14 @@
|
|||||||
package com.example.demo;
|
package com.example.demo;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
import org.junit.jupiter.api.TestMethodOrder;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
import org.springframework.dao.DataIntegrityViolationException;
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
import com.example.demo.core.error.NotFoundException;
|
||||||
import com.example.demo.types.model.TypeEntity;
|
import com.example.demo.types.model.TypeEntity;
|
||||||
@ -16,50 +18,65 @@ import com.example.demo.types.service.TypeService;
|
|||||||
@TestMethodOrder(OrderAnnotation.class)
|
@TestMethodOrder(OrderAnnotation.class)
|
||||||
class TypeServiceTests {
|
class TypeServiceTests {
|
||||||
@Autowired
|
@Autowired
|
||||||
private TypeService typeService;
|
private TypeService typeService;
|
||||||
|
|
||||||
|
private TypeEntity type;
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void createData() {
|
||||||
|
removeData();
|
||||||
|
|
||||||
|
type = typeService.create(new TypeEntity("Protection"));
|
||||||
|
typeService.create(new TypeEntity("Sharpness"));
|
||||||
|
typeService.create(new TypeEntity("Infinity"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
void removeData() {
|
||||||
|
typeService.deleteAll();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void getTest() {
|
void getTest() {
|
||||||
Assertions.assertThrows(NotFoundException.class, () -> typeService.get(0L));
|
Assertions.assertThrows(NotFoundException.class, () -> typeService.get(0L));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void createTest() {
|
||||||
|
Assertions.assertEquals(3, typeService.getAll().size());
|
||||||
|
Assertions.assertEquals(type, typeService.get(type.getId()));
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Order(1)
|
void createNotUniqueTest() {
|
||||||
void createTest() {
|
final TypeEntity nonUniqueType = new TypeEntity("Protection");
|
||||||
typeService.create(new TypeEntity(null, "Protection"));
|
Assertions.assertThrows(IllegalArgumentException.class, () -> typeService.create(nonUniqueType));
|
||||||
typeService.create(new TypeEntity(null, "Sharpness"));
|
}
|
||||||
final TypeEntity last = typeService.create(new TypeEntity(null, "Infinity"));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, typeService.getAll().size());
|
|
||||||
Assertions.assertEquals(last, typeService.get(3L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Order(2)
|
void createNullableTest() {
|
||||||
void updateTest() {
|
final TypeEntity nullableType = new TypeEntity(null);
|
||||||
final String test = "TEST";
|
Assertions.assertThrows(DataIntegrityViolationException.class, () -> typeService.create(nullableType));
|
||||||
final TypeEntity entity = typeService.get(3L);
|
}
|
||||||
final String oldName = entity.getName();
|
|
||||||
final TypeEntity newEntity = typeService.update(3L, new TypeEntity(1L, test));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, typeService.getAll().size());
|
|
||||||
Assertions.assertEquals(newEntity, typeService.get(3L));
|
|
||||||
Assertions.assertEquals(test, newEntity.getName());
|
|
||||||
Assertions.assertNotEquals(oldName, newEntity.getName());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Order(3)
|
void updateTest() {
|
||||||
void deleteTest() {
|
final String test = "TEST";
|
||||||
typeService.delete(3L);
|
final String oldName = type.getName();
|
||||||
Assertions.assertEquals(2, typeService.getAll().size());
|
final TypeEntity newEntity = typeService.update(type.getId(), new TypeEntity(test));
|
||||||
final TypeEntity last = typeService.get(2L);
|
Assertions.assertEquals(3, typeService.getAll().size());
|
||||||
Assertions.assertEquals(2L, last.getId());
|
Assertions.assertEquals(newEntity, typeService.get(type.getId()));
|
||||||
|
Assertions.assertEquals(test, newEntity.getName());
|
||||||
|
Assertions.assertNotEquals(oldName, newEntity.getName());
|
||||||
|
}
|
||||||
|
|
||||||
final TypeEntity newEntity = typeService.create(new TypeEntity(null, "Infinity"));
|
@Test
|
||||||
Assertions.assertEquals(3, typeService.getAll().size());
|
void deleteTest() {
|
||||||
Assertions.assertEquals(4L, newEntity.getId());
|
typeService.delete(type.getId());
|
||||||
|
Assertions.assertEquals(2, typeService.getAll().size());
|
||||||
|
|
||||||
typeService.deleteAll();
|
final TypeEntity newEntity = typeService.create(new TypeEntity(type.getName()));
|
||||||
}
|
Assertions.assertEquals(3, typeService.getAll().size());
|
||||||
|
Assertions.assertNotEquals(type.getId(), newEntity.getId());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,90 @@
|
|||||||
|
package com.example.demo;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
||||||
|
import org.junit.jupiter.api.Order;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.TestMethodOrder;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
|
import com.example.demo.messages.model.MessageEntity;
|
||||||
|
import com.example.demo.messages.service.MessageService;
|
||||||
|
import com.example.demo.users.model.UserEntity;
|
||||||
|
import com.example.demo.users.service.UserService;
|
||||||
|
|
||||||
|
import jakarta.persistence.EntityManager;
|
||||||
|
|
||||||
|
@SpringBootTest
|
||||||
|
@TestMethodOrder(OrderAnnotation.class)
|
||||||
|
class UserMessageServiceTests {
|
||||||
|
@Autowired
|
||||||
|
private EntityManager entityManager;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private UserService userService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private MessageService messageService;
|
||||||
|
|
||||||
|
|
||||||
|
private UserEntity user1;
|
||||||
|
private UserEntity user2;
|
||||||
|
private UserEntity user3;
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void createData() {
|
||||||
|
removeData();
|
||||||
|
|
||||||
|
user1 = userService.create(new UserEntity("user1", "password", "mail1@gmail.com"));
|
||||||
|
user2 = userService.create(new UserEntity("user2", "password", "mail2@gmail.com"));
|
||||||
|
user3 = userService.create(new UserEntity("user3", "password", "mail3@gmail.com"));
|
||||||
|
|
||||||
|
final var messages1 = List.of(
|
||||||
|
new MessageEntity("message1", LocalDateTime.now(), false),
|
||||||
|
new MessageEntity("message2", LocalDateTime.now(), false),
|
||||||
|
new MessageEntity("message3", LocalDateTime.now(), false)
|
||||||
|
);
|
||||||
|
messages1.forEach(message -> messageService.create(user1.getId(), message));
|
||||||
|
|
||||||
|
final var messages2 = List.of(
|
||||||
|
new MessageEntity("Message4", LocalDateTime.now(), false),
|
||||||
|
new MessageEntity("Message5", LocalDateTime.now(), false)
|
||||||
|
);
|
||||||
|
messages2.forEach(message -> messageService.create(user2.getId(), message));
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
void removeData() {
|
||||||
|
userService.deleteAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(1)
|
||||||
|
void createTest() {
|
||||||
|
Assertions.assertEquals(5, messageService.getAll(0L).size());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(2)
|
||||||
|
void orderFilterTest() {
|
||||||
|
Assertions.assertEquals(3, messageService.getAll(user1.getId()).size());
|
||||||
|
Assertions.assertEquals(2, messageService.getAll(user2.getId()).size());
|
||||||
|
Assertions.assertEquals(0, messageService.getAll(user3.getId()).size());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(3)
|
||||||
|
void userCascadeDeleteTest() {
|
||||||
|
userService.delete(user1.getId());
|
||||||
|
final var messages = entityManager.createQuery(
|
||||||
|
"select count(o) from MessageEntity o where o.user.id = :userId");
|
||||||
|
messages.setParameter("userId", user1.getId());
|
||||||
|
Assertions.assertEquals(0, messages.getFirstResult());
|
||||||
|
}
|
||||||
|
}
|
100
demo/src/test/java/com/example/demo/UserOrderServiceTests.java
Normal file
100
demo/src/test/java/com/example/demo/UserOrderServiceTests.java
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
package com.example.demo;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Order;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.TestMethodOrder;
|
||||||
|
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
|
import com.example.demo.orders.model.OrderEntity;
|
||||||
|
import com.example.demo.orders.service.OrderService;
|
||||||
|
import com.example.demo.types.model.TypeEntity;
|
||||||
|
import com.example.demo.types.service.TypeService;
|
||||||
|
import com.example.demo.users.model.UserEntity;
|
||||||
|
import com.example.demo.users.service.UserService;
|
||||||
|
|
||||||
|
import jakarta.persistence.EntityManager;
|
||||||
|
|
||||||
|
@SpringBootTest
|
||||||
|
@TestMethodOrder(OrderAnnotation.class)
|
||||||
|
class UserOrderServiceTests {
|
||||||
|
@Autowired
|
||||||
|
private EntityManager entityManager;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private TypeService typeService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private UserService userService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private OrderService orderService;
|
||||||
|
|
||||||
|
private TypeEntity type1;
|
||||||
|
private TypeEntity type2;
|
||||||
|
private TypeEntity type3;
|
||||||
|
|
||||||
|
private UserEntity user1;
|
||||||
|
private UserEntity user2;
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void createData() {
|
||||||
|
removeData();
|
||||||
|
|
||||||
|
type1 = typeService.create(new TypeEntity("Protection"));
|
||||||
|
type2 = typeService.create(new TypeEntity("Sharpness"));
|
||||||
|
type3 = typeService.create(new TypeEntity("Infinity"));
|
||||||
|
|
||||||
|
user1 = userService.create(new UserEntity("user1", "password", "mail1@gmail.com"));
|
||||||
|
user2 = userService.create(new UserEntity("user2", "password", "mail2@gmail.com"));
|
||||||
|
|
||||||
|
final var orders = List.of(
|
||||||
|
new OrderEntity(type1, 12.00, 3),
|
||||||
|
new OrderEntity(type1, 50.00, 20),
|
||||||
|
new OrderEntity(type2, 15.00, 30),
|
||||||
|
new OrderEntity(type2, 64.00, 10),
|
||||||
|
new OrderEntity(type2, 15.00, 6),
|
||||||
|
new OrderEntity(type3, 80.00, 6),
|
||||||
|
new OrderEntity(type3, 64.00, 3)
|
||||||
|
);
|
||||||
|
orders.forEach(order -> orderService.create(user1.getId(), order));
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
void removeData() {
|
||||||
|
userService.deleteAll();
|
||||||
|
typeService.deleteAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(1)
|
||||||
|
void createTest() {
|
||||||
|
Assertions.assertEquals(7, orderService.getAll(user1.getId(), 0L).size());
|
||||||
|
Assertions.assertEquals(0, orderService.getAll(user2.getId(), 0L).size());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(2)
|
||||||
|
void orderFilterTest() {
|
||||||
|
Assertions.assertEquals(2, orderService.getAll(user1.getId(), type1.getId()).size());
|
||||||
|
Assertions.assertEquals(3, orderService.getAll(user1.getId(), type2.getId()).size());
|
||||||
|
Assertions.assertEquals(2, orderService.getAll(user1.getId(), type3.getId()).size());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(3)
|
||||||
|
void userCascadeDeleteTest() {
|
||||||
|
userService.delete(user1.getId());
|
||||||
|
final var orders = entityManager.createQuery(
|
||||||
|
"select count(o) from OrderEntity o where o.user.id = :userId");
|
||||||
|
orders.setParameter("userId", user1.getId());
|
||||||
|
Assertions.assertEquals(0, orders.getFirstResult());
|
||||||
|
}
|
||||||
|
}
|
@ -1,67 +0,0 @@
|
|||||||
package com.example.demo;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Assertions;
|
|
||||||
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
|
||||||
|
|
||||||
import com.example.demo.core.error.NotFoundException;
|
|
||||||
import com.example.demo.users.model.UserEntity;
|
|
||||||
import com.example.demo.users.service.UserService;
|
|
||||||
|
|
||||||
@SpringBootTest
|
|
||||||
@TestMethodOrder(OrderAnnotation.class)
|
|
||||||
public class UserServiceTests {
|
|
||||||
@Autowired
|
|
||||||
private UserService userService;
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void getTest() {
|
|
||||||
Assertions.assertThrows(NotFoundException.class, () -> userService.get(0L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(1)
|
|
||||||
void createTest() {
|
|
||||||
userService.create(new UserEntity(null, "User1", "password1", "mail1@gmail.com"));
|
|
||||||
userService.create(new UserEntity(null, "User2", "password2", "mail2@gmail.com"));
|
|
||||||
final UserEntity last = userService.create(new UserEntity(null, "User3", "password3", "mail3@gmail.com"));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, userService.getAll().size());
|
|
||||||
Assertions.assertEquals(last, userService.get(3L));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(2)
|
|
||||||
void updateTest() {
|
|
||||||
final String test = "TEST";
|
|
||||||
final String password = "qwerty";
|
|
||||||
final String email = "mail@xmail.ru";
|
|
||||||
final UserEntity entity = userService.get(3L);
|
|
||||||
final String oldUsername = entity.getUsername();
|
|
||||||
final UserEntity newEntity = userService.update(3L, new UserEntity(1L, test, password, email));
|
|
||||||
|
|
||||||
Assertions.assertEquals(3, userService.getAll().size());
|
|
||||||
Assertions.assertEquals(newEntity, userService.get(3L));
|
|
||||||
Assertions.assertEquals(test, newEntity.getUsername());
|
|
||||||
Assertions.assertNotEquals(oldUsername, newEntity.getUsername());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(3)
|
|
||||||
void deleteTest() {
|
|
||||||
userService.delete(3L);
|
|
||||||
Assertions.assertEquals(2, userService.getAll().size());
|
|
||||||
final UserEntity last = userService.get(2L);
|
|
||||||
Assertions.assertEquals(2L, last.getId());
|
|
||||||
|
|
||||||
final UserEntity newEntity = userService.create(new UserEntity(null, "User4", "password4", "mail4@gmail.com"));
|
|
||||||
Assertions.assertEquals(3, userService.getAll().size());
|
|
||||||
Assertions.assertEquals(4L, newEntity.getId());
|
|
||||||
|
|
||||||
userService.deleteAll();
|
|
||||||
}
|
|
||||||
}
|
|
14
demo/src/test/resources/application.properties
Normal file
14
demo/src/test/resources/application.properties
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Server
|
||||||
|
spring.main.banner-mode=off
|
||||||
|
|
||||||
|
# Logger settings
|
||||||
|
# Available levels are: TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF
|
||||||
|
logging.level.com.example.demo=DEBUG
|
||||||
|
|
||||||
|
# JPA Settings
|
||||||
|
spring.datasource.url=jdbc:h2:mem:testdb
|
||||||
|
spring.datasource.username=factorino
|
||||||
|
spring.datasource.password=password
|
||||||
|
spring.datasource.driver-class-name=org.h2.Driver
|
||||||
|
spring.jpa.hibernate.ddl-auto=create
|
||||||
|
spring.jpa.open-in-view=false
|
Loading…
Reference in New Issue
Block a user