21 lines
389 B
Java
21 lines
389 B
Java
package com.didispace.web;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
*
|
|
* @author 程序猿DD
|
|
* @version 1.0.0
|
|
* @blog http://blog.didispace.com
|
|
*
|
|
*/
|
|
@RestController
|
|
public class HelloController {
|
|
|
|
@RequestMapping("/hello")
|
|
public String index() {
|
|
return "Hello World";
|
|
}
|
|
|
|
} |