如何在struts2中获取基本URL

时间:2012-06-01 09:00:18

标签: struts2 struts

我正在使用struts2框架&在struts1中我们用来从基本URL指出它

<html:rewrite page='/stylesheets/m.css'/>

请告诉我如何在sturts2中做同样的事情

1 个答案:

答案 0 :(得分:2)

正如@Quaternion评论

<link rel="stylesheet" href="<s:url value="/stylesheets/m.css"/>" />

<link rel="stylesheet" href="${pageContext.request.contextPath}/stylesheets/m.css" type="text/css">

Strut2 UrlTag