15 lines
283 B
Java
15 lines
283 B
Java
package com.example.demo;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
@RestController
|
|
public class DemoController {
|
|
|
|
@RequestMapping("/")
|
|
public Object root() {
|
|
return null;
|
|
}
|
|
|
|
}
|