我正在尝试使用 Java 学习 Web 开发,这是我在 Java Web 中的第一个程序。我在 Netbeans 中使用了 Maven 项目并添加了 Spring Framework。这只是一个简单的 hello world,但是在运行时,controller.java 中的消息不会显示在 index.htm 中。我遵循了网络上的教程,但我的不起作用。可能是什么问题呢 ??
这就是我的控制器中的内容
@Controller
public class sampClass {
@RequestMapping("/index")
public ModelAndView printWelcome(){
String message = "Hello World";
return new ModelAndView("index", "message", message);
}
}
我的看法很简单
Message: ${message}
那么输出很简单
信息: