我正在尝试这里示例的简化版本。该项目是使用 Springboot 扩展附带的初始化程序在 VSCode 中设置的。
DemoApplication.java
package com.sample.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
CalculatorController.java
package com.sample.demo;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class CalculatorController {
@RequestMapping("/")
public String index() {
return "index";
}
}
我正在从 VSCode 运行该应用程序并以以下方式访问它:http://localhost:8080/。我不断收到404错误消息。当我将@Controller注释更改为@RestController注释时,它就起作用了。另外,还存在resources\templates\index.html.
我缺少什么?
蝴蝶不菲
智慧大石
www说
相关分类