![][image-1]
![][image-2]
![][image-3]
这时候我们可以看到,我们的demo2工程就建好了,在左边的 Package Explorer 栏里,我们可以看到简单的项目结构。
![][image-4]
![][image-5]
我们创建一个 TestController
![][image-6]
然后我们在 TestController 里面写入我们的测试代码:
package com.example.demo.test; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; @RestController public class TestController { @RequestMapping(value="/test",method=RequestMethod.GET) public String test(){ return "this is api NO.0"; } }
@RestController 表示这是一个控制器的入口。
@RequestMapping 里面的参数定义了接口路径和请求方式,比如上面的代码在本地的接口路径就是 localhost:8080/test,请求方式为 GET 方式 。localhost 是本地路径,8080 是默认端口。
下面的几行代码可能会报错,这时候点击左边的红色叉号,它会出现建议修改的方法。
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController;