想通过springboot实现输入“http://localhost:8080/sayhello?name=自己名字”然后在网页上面显示自己的名字;
但是搭建Springboot之后输入localhost:8080仍然是404
这是我的project:
这个是index:
<html lang="en">
<head>
<meta charset="UTF-8">
<title>hello</title>
</head>
<body>
Stephen!hello!
</body>
</html>
这个是TestApplication:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TestApplication {
public static void main(String[] args) {
SpringApplication.run(TestApplication.class, args);
}
}
另外这个需要配置tomcat吗?