Java tutorial
/* * Copyright 2016-2017 Red Hat, Inc, and individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.openshift.booster.service; import java.util.List; import java.util.Objects; import java.util.Spliterator; import java.util.stream.Collectors; import java.util.stream.StreamSupport; import io.openshift.booster.exception.NotFoundException; import io.openshift.booster.exception.UnprocessableEntityException; import io.openshift.booster.exception.UnsupportedMediaTypeException; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; 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.ResponseBody; import org.springframework.web.bind.annotation.ResponseStatus; @Controller @RequestMapping(value = "/api/fruits") public class FruitController { private final FruitRepository repository; @Autowired public FruitController(FruitRepository repository) { this.repository = repository; } @ResponseBody @GetMapping(value = "/{id}", produces = MediaType.APPLICATION_JSON_VALUE) public Fruit get(@PathVariable("id") Integer id) { verifyFruitExists(id); return repository.findOne(id); } @ResponseBody @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) public List<Fruit> getAll() { Spliterator<Fruit> fruits = repository.findAll().spliterator(); return StreamSupport.stream(fruits, false).collect(Collectors.toList()); } @ResponseBody @ResponseStatus(HttpStatus.CREATED) @PostMapping(consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) public Fruit post(@RequestBody(required = false) Fruit fruit) { verifyCorrectPayload(fruit); return repository.save(fruit); } @ResponseBody @ResponseStatus(HttpStatus.OK) @PutMapping(value = "/{id}", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) public Fruit put(@PathVariable("id") Integer id, @RequestBody(required = false) Fruit fruit) { verifyFruitExists(id); verifyCorrectPayload(fruit); fruit.setId(id); return repository.save(fruit); } @ResponseStatus(HttpStatus.NO_CONTENT) @DeleteMapping("/{id}") public void delete(@PathVariable("id") Integer id) { verifyFruitExists(id); repository.delete(id); } private void verifyFruitExists(Integer id) { if (!repository.exists(id)) { throw new NotFoundException(String.format("Fruit with id=%d was not found", id)); } } private void verifyCorrectPayload(Fruit fruit) { if (Objects.isNull(fruit)) { throw new UnsupportedMediaTypeException("Fruit cannot be null"); } if (!Objects.isNull(fruit.getId())) { throw new UnprocessableEntityException("Id filed must be generated"); } } }