15 lines
344 B
Java
15 lines
344 B
Java
package com.liang.controller;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
@RestController
|
|
@RequestMapping("/test")
|
|
public class TestController {
|
|
|
|
@RequestMapping("/hello")
|
|
public String hello(){
|
|
return "这是命运石之门的选择";
|
|
}
|
|
}
|