在JSP页面(index.jsp)中:
${requestContext.requestURL} is the URL
只是显示表达本身.它过去被评估为" http://.../somerset/ "
我在Eclipse中使用maven-archetype-webapp原型创建了Maven项目.Jetty版本是jetty-6.1.14.
我的web.xml很简单:
Archetype Created Web Application SomersetServlet SomersetServlet com.foo.somerset.SomersetServlet SomersetServlet /som.do
Peter Štibra.. 8
请参阅Javascript String.replace(/\$ /,str)由于某些可能的原因在jsp文件中奇怪地工作.
您的web.xml应该包含对web-app_2_4.xsd架构的引用,例如
这使得servlet 2.4和jsp 2.0处理成为可能,其中包括EL.
顺便说一句requestContext
是无效的隐式对象.
请参阅Javascript String.replace(/\$ /,str)由于某些可能的原因在jsp文件中奇怪地工作.
您的web.xml应该包含对web-app_2_4.xsd架构的引用,例如
这使得servlet 2.4和jsp 2.0处理成为可能,其中包括EL.
顺便说一句requestContext
是无效的隐式对象.