0

我正在尝试使用 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}

那么输出很简单

信息:

4

2 回答 2

0

问题出在 applicationContext.xml 中,注释未声明

<mvc:annotation-driven />

<context:annotation-config />
<context:component-scan base-package="com.sample"/>
于 2013-08-27T07:23:57.673 回答
0

您可能需要在 JSP 文件的顶部使用它:

<%@ page isELIgnored="false"%>

为了使 ELI 表达式为${message}

于 2013-08-27T07:35:12.777 回答