在Spring MVC中等效于s:property

时间:2018-10-10 09:14:24

标签: spring spring-mvc jsp struts2

我目前正在将Struts2项目转换为Spring MVC,而我正在努力寻找与Spring中s:property标签等效的项目。 这是我要转换的一些示例:

<s:property value="#contentha.idcontent"/>
<s:property value="%{topRex.idcontent}"/>

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

你可以写

${contentha.idcontent}
${topRew.idcontent}

如果要使用标签,可以编写:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<c:out value="${contentha.idcontent}" />
<c:out value="${topRew.idcontent}" default="Value if null" />

这将需要jstl依赖性。例如,如果您使用Maven:

<dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>