Struts 2的jsp(155, 69) Attribute qualified names must be unique within an element

遇到一个问题,本地测试没有问题,发布到remote server出现了异常,很诡异。

环境如下:
Web Server(localhost):Tomcat6.0.18
Web Server(remote):Tomcat-7.0.54

异常信息:
Exception:
jsp(155, 69) Attribute qualified names must be unique within an element

在Tomcat 6下运行正常,但是在Tomcat 7下异常。

经检查发现:
155行处代码如下:
<s:select label="location_name" name="location_name" id="location_name" id="location_name".....

解决:
两个重复的id,杯具啊,删掉重复id,重新发布,一切正常。

你可能感兴趣的:(jsp,struts)