Reading properties like page size from the application.properties file.

master
Tomasz Półgrabia 2021-01-06 17:33:15 +01:00
parent 3d5b27d91e
commit bfa751a51a
3 changed files with 19 additions and 4 deletions

View File

@ -0,0 +1,8 @@
package ch.polgrabia.springshowcaseweb.configs;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ApplicationConfig {
}

View File

@ -3,8 +3,9 @@ package ch.polgrabia.springshowcaseweb.controllers;
import ch.polgrabia.springshowcaseweb.models.User; import ch.polgrabia.springshowcaseweb.models.User;
import ch.polgrabia.springshowcaseweb.services.JpaUserDao; import ch.polgrabia.springshowcaseweb.services.JpaUserDao;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.dao.EmptyResultDataAccessException; import org.springframework.dao.EmptyResultDataAccessException;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.PageRequest;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
@ -15,19 +16,23 @@ import java.util.Optional;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@RestController @RestController
@PropertySource("classpath:application.properties")
@RequestMapping("/api/users") @RequestMapping("/api/users")
public class UserController { public class UserController {
public static final int PAGE_SIZE = 10;
private final JpaUserDao jpaUserDao; private final JpaUserDao jpaUserDao;
private final Integer pageSize;
public UserController(@Autowired JpaUserDao jpaUserDao) { public UserController(
@Autowired JpaUserDao jpaUserDao,
@Value("${springshowcase.users.controller.page.size}") Integer pageSize) {
this.jpaUserDao = jpaUserDao; this.jpaUserDao = jpaUserDao;
this.pageSize = pageSize;
} }
@RequestMapping(path = "/", method = RequestMethod.GET) @RequestMapping(path = "/", method = RequestMethod.GET)
public List<User> handleGetAllUsers(@RequestParam(name = "page", defaultValue = "0", required = false) Integer page) { public List<User> handleGetAllUsers(@RequestParam(name = "page", defaultValue = "0", required = false) Integer page) {
return jpaUserDao.findAll(PageRequest.of(page, PAGE_SIZE)) return jpaUserDao.findAll(PageRequest.of(page, pageSize))
.get() .get()
.collect(Collectors.toList()); .collect(Collectors.toList());
} }

View File

@ -2,3 +2,5 @@ spring.jpa.hibernate.ddl-auto=none
spring.datasource.url=jdbc:postgresql://localhost:5432/test spring.datasource.url=jdbc:postgresql://localhost:5432/test
spring.datasource.username=test spring.datasource.username=test
spring.datasource.password=test spring.datasource.password=test
springshowcase.users.controller.page.size=10