struts2.0.11中时间标签不显示
用的版本是2.0.11的之前时间标签是可用的但突然有一天发现不可用了现象是只显示label不显示下拉框我怀疑是配置信息有冲突的地方上网找了一些解决方案都是不行请高手帮忙w...
用的版本是2.0.11的
之前时间标签是可用的
但突然有一天发现不可用了
现象是只显示label不显示下拉框
我怀疑是配置信息有冲突的地方
上网找了一些解决方案都是不行
请高手帮忙
web中的配置
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ActionContextCleanUp
</filter-class>
</filter>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>
org.springframework.web.filter.CharacterEncodingFilter
</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>GB2312</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
jsp中用法
<s:datetimepicker cssStyle="height:20px;width:170px;" cssClass="b3" toggleType="explode" language="zh-cn" name="date" theme="simple" displayFormat="yyyy-MM-dd" ></s:datetimepicker>
已经加入<s:head/>了
查看svn页面没有变动,包也没有变动
页面恢复的之前的版本也是有问题的
所以怀疑是配置信息有问题 展开
之前时间标签是可用的
但突然有一天发现不可用了
现象是只显示label不显示下拉框
我怀疑是配置信息有冲突的地方
上网找了一些解决方案都是不行
请高手帮忙
web中的配置
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ActionContextCleanUp
</filter-class>
</filter>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>
org.springframework.web.filter.CharacterEncodingFilter
</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>GB2312</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
jsp中用法
<s:datetimepicker cssStyle="height:20px;width:170px;" cssClass="b3" toggleType="explode" language="zh-cn" name="date" theme="simple" displayFormat="yyyy-MM-dd" ></s:datetimepicker>
已经加入<s:head/>了
查看svn页面没有变动,包也没有变动
页面恢复的之前的版本也是有问题的
所以怀疑是配置信息有问题 展开
2个回答
展开全部
struts2.0.11这个版本很不稳定
可以替换到2.1.6版本
替换包包括
xwork
还有以struts的所有包都去掉
替换的新包有
xwork-2.1.2.jar
struts2-core-2.1.6.jar
struts2-dojo-plugin-2.1.6.jar
就可以了
当然时间标签就不能这么用了
要这样
页面引入
<%@ taglib uri="/struts-dojo-tags" prefix="sx"%>
头部加
<sx:head/>
标签用法<sx:datetimepicker cssStyle="height:20px;width:170px;" cssClass="b3" toggleType="explode" language="zh-cn" name="date" displayFormat="yyyy-MM-dd" ></sx:datetimepicker>
可以替换到2.1.6版本
替换包包括
xwork
还有以struts的所有包都去掉
替换的新包有
xwork-2.1.2.jar
struts2-core-2.1.6.jar
struts2-dojo-plugin-2.1.6.jar
就可以了
当然时间标签就不能这么用了
要这样
页面引入
<%@ taglib uri="/struts-dojo-tags" prefix="sx"%>
头部加
<sx:head/>
标签用法<sx:datetimepicker cssStyle="height:20px;width:170px;" cssClass="b3" toggleType="explode" language="zh-cn" name="date" displayFormat="yyyy-MM-dd" ></sx:datetimepicker>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询