Struts2 在jsp中使用<s:debug/>标签无效,检查标签库已导入:
<%@ taglib uri="/struts-tags" prefix="s" %>
却不能显示,原因是<s:debug/>标签是为了方便开发,默认是关闭的,在产品中不建议使用,要在开发时使用可在struts.xml修改常量struts.devMode为true
<constant name="struts.devMode" value="true" />
修改后重启即可
Struts2 在jsp中使用<s:debug/>标签无效,检查标签库已导入:
<%@ taglib uri="/struts-tags" prefix="s" %>
却不能显示,原因是<s:debug/>标签是为了方便开发,默认是关闭的,在产品中不建议使用,要在开发时使用可在struts.xml修改常量struts.devMode为true
<constant name="struts.devMode" value="true" />
修改后重启即可