Remove HelloWorld and Create User Service

This commit is contained in:
Marcel Schwarz 2020-04-14 09:57:09 +02:00
parent 3d2810148b
commit b7f84e0715
5 changed files with 16 additions and 15 deletions

View File

@ -1,15 +0,0 @@
package de.hft.geotime.controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloWorldController {
@RequestMapping("/hello/{name}")
public String helloWorld(@PathVariable String name) {
return "Hello " + name;
}
}

View File

@ -0,0 +1,4 @@
package de.hft.geotime.user;
public class User {
}

View File

@ -0,0 +1,4 @@
package de.hft.geotime.user;
public class UserController {
}

View File

@ -0,0 +1,4 @@
package de.hft.geotime.user;
public class UserRepository {
}

View File

@ -0,0 +1,4 @@
package de.hft.geotime.user;
public class UserService {
}