代码无法运行,一直404
package com.dtb;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
/**
* Created by Administrator on 2017/5/27 0027.
*/
@RestController
public class Indexcontroller {
@RequestMapping(value = "/index",method = RequestMethod.GET)
public String say(){
return "hello Spring boot";
}
}