Remove HelloWorld and Create User Service
This commit is contained in:
parent
3d2810148b
commit
b7f84e0715
@ -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;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
4
backend/src/main/java/de/hft/geotime/user/User.java
Normal file
4
backend/src/main/java/de/hft/geotime/user/User.java
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
package de.hft.geotime.user;
|
||||||
|
|
||||||
|
public class User {
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package de.hft.geotime.user;
|
||||||
|
|
||||||
|
public class UserController {
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package de.hft.geotime.user;
|
||||||
|
|
||||||
|
public class UserRepository {
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package de.hft.geotime.user;
|
||||||
|
|
||||||
|
public class UserService {
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user