Hendrik Jungnitsch
2022-09-07 18134907066301a801f4747926592c5977141279
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package de.gedoplan.seminar.jpa.exercise.rest;
 
import java.util.List;
 
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
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 de.gedoplan.seminar.jpa.exercise.domain.MaintenanceDepartment;
import de.gedoplan.seminar.jpa.exercise.repository.MaintenanceDepartmentRepository;
 
@RequestMapping(path = "/mdeps", produces = MediaType.APPLICATION_JSON_VALUE)
@RestController
public class MaintenanceDepartmentResource {
 
    @Autowired
    Logger logger;
 
    @Autowired
    MaintenanceDepartmentRepository maintenanceDepartmentRepository;
 
    @PostMapping(consumes = MediaType.APPLICATION_JSON_VALUE)
    public void insert(@RequestBody MaintenanceDepartment maintenanceDepartment) {
        this.logger.debug("----- insert -----");
 
        this.maintenanceDepartmentRepository.save(maintenanceDepartment);
 
        this.logger.debug("Inserted: " + maintenanceDepartment);
    }
 
    /**
     * Exercise JPA_BASICS_05: Find all entries.
     */
    @GetMapping
    public List<MaintenanceDepartment> findAll() {
        this.logger.debug("----- findAll -----");
 
        List<MaintenanceDepartment> maintenanceDepartments = maintenanceDepartmentRepository.findAll();
        this.logger.debug("Gefunden: " + maintenanceDepartments);
        return maintenanceDepartments;
    }
 
    /**
     * Exercise JPA_BASICS_06: Find by highway name.
     */
    @GetMapping("findByHighwayName")
    public List<MaintenanceDepartment> findByHighwayName(@RequestParam("name") String highwayName) {
        this.logger.debug("----- findByHighwayName -----");
 
        List<MaintenanceDepartment> maintenanceDepartments = maintenanceDepartmentRepository.findByHighways_Name(highwayName);
        this.logger.debug(highwayName + ": " + maintenanceDepartments);
        return maintenanceDepartments;
    }
 
}