使用@PathVariable时,Spring引导报告404错误

时间:2017-06-21 03:36:42

标签: java spring spring-boot

我是Spring Boot的初学者。

我刚刚写了一个控制器,代码在这里。

package hello;

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;

@Controller
@EnableAutoConfiguration
public class SampleController {

    @RequestMapping("/")
    @ResponseBody
    String home() {
        return "Hello Name!";
    }

    @RequestMapping(value = "/hello/{name}", method = RequestMethod.GET)
    String hello(@PathVariable String name) {
        return "hello " + name;
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(SampleController.class, args);
    }
}

然后当我访问“localhost:8080”时,我得到了正确的页面。 但是当我访问“localhost:8080 / hello / someName”时,我得到了“Whitelabel错误页面”。

我的代码出了什么问题?非常感谢你。

1 个答案:

答案 0 :(得分:3)

尝试@PathVariable("name") String name。并在hello方法中使用@ResponseBody注释。

@ResponseBody
@RequestMapping(value = "/hello/{name}", method = RequestMethod.GET)
    String hello(@PathVariable("name") String name) {
        return "hello " + name;
    }