Compare commits

..

No commits in common. "adc7b4be65442ada16306648c4f983b2a8568f8c" and "898d2e9cf1354b196e44b657c513c8235403a66b" have entirely different histories.

View File

@ -18,6 +18,15 @@ import org.springframework.web.server.ResponseStatusException;
@RequestMapping(path = "/vpr") // This means URL's start with /demo (after Application path) @RequestMapping(path = "/vpr") // This means URL's start with /demo (after Application path)
public class MainController { public class MainController {
// This means to get the bean called userRepository
// Which is auto-generated by Spring, we will use it to handle the data
@Autowired
private UserRepository userRepository;
@Autowired
private EventRepository eventRepository;
@Autowired
private UserEventRepository userEventRepository;
@GetMapping(path = "/status-test") @GetMapping(path = "/status-test")
public String statusTest(){ public String statusTest(){
throw new ResponseStatusException(HttpStatus.I_AM_A_TEAPOT, "TestTestTest"); throw new ResponseStatusException(HttpStatus.I_AM_A_TEAPOT, "TestTestTest");