在JSP

时间:2016-03-03 02:15:49

标签: jsp

我有两个请求变量 MyVar MyRequestVar ,其值是从Spring MVC控制器设置的。 MyRequestVar 设置为某些HTML内容,使用 MyVar ,如下所示:

 <table><tr><td><img src="${MyVar}"></td></tr></table>  

当我在JSP中打印这个变量时:

${MyRequestVar}  

它不能替代HTML中 MyVar 的值。如何打印 MyRequestVar 以便在HTML中替换 MyVar 的值?

我正在使用带有JSTL 1.2的servlet API 2.5

    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>jstl</artifactId>
        <version>1.2</version>
        <scope>compile</scope>
    </dependency>

     <!-- Provided Dependencies -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
        <scope>provided</scope>
    </dependency>

0 个答案:

没有答案