gmdate('W')
答案 0 :(得分:2)
正如异常所说,您正在尝试将2个不同的servlet绑定到同一个URI:
The servlets named [JavaQuestionForm] and [JavaQuestion] are both mapped to the url-pattern [/JavaQuestion] which is not permitted
您必须更改web.xml
答案 1 :(得分:0)
检查您的web.xml
或网络配置注释。显然,您将两个不同的servlet(JavaQuestion
和JavaQuestionForm
)映射到同一个网址:/JavaQuestion
。