神速搭建IDEA+SpringMVC
package com.wanson.andrew;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloWorld {
@RequestMapping("/")
public String Index(){
return "hello world";
}
}
posted on 2018-08-15 11:12 Indian_Mysore 阅读(150) 评论(0) 编辑 收藏 举报