Reading properties like page size from the application.properties file.
parent
3d5b27d91e
commit
bfa751a51a
|
@ -0,0 +1,8 @@
|
||||||
|
package ch.polgrabia.springshowcaseweb.configs;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class ApplicationConfig {
|
||||||
|
|
||||||
|
}
|
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue