我在tomcat上运行了一个相对简单的spring web应用程序,它返回一个xml文档。初始请求进入,我可以调试到我的代码。但是,后续请求不会进入调试器。我可以使用浏览器或soapUI发出初始请求,后续请求(在不同的浏览器/程序/机器上)获得与初始请求相同的响应。
localhost_access_log随每个请求填充。但是,log4j文件不会在第一个请求之后填充。
我正在使用Tomcat 7和spring 3.1.1。这种情况发生在eclipse中部署的tomcat(用于启用调试),以及在Linux上的另一个tomcat服务器上部署。
这类似于另一个问题(Tomcat gives Same Response)从未接受过接受的答案。
所以它似乎不是浏览器缓存(不同的应用程序发出请求得到相同的响应),而是某种Tomcat缓存。
有什么想法吗?这是我认为可能导致问题的server.xml,但我没有看到任何危险信号。另外,我正在对Web应用程序进行GET,这可能会在服务器端以某种方式进行缓存。
示例GET请求:http://localhost:8130/bootstrap/xml?environment=dev
它返回一个xml文档,如RequestMapping中所述:
@RequestMapping(value = "/xml", method = RequestMethod.GET,produces="application/xml")
示例回复:
<connection_details env="dev">
<servers>
<server host="localhost" name="auth" port="9876"/>
</servers>
</connection_details>
即使传递给GET请求的环境变量发生更改,每个请求都会返回与初始请求相同的问题,但问题会自行显现。即使从不同的浏览器和soapUI请求,也是如此。
如何创建上述响应的示例:
private ModelAndView bootstrap(HttpServletResponse response, String environment) {
Map<String, Object> model = new HashMap<String, Object>();
try {
DOMSource domSource = new DOMSource(documentBuilder.parse(context
.getResourceAsStream(bootstrapXmlFileName)));
model.put("xml", domSource);
model.put("requestedEnvironment", environment);
}
catch (Exception e) {
response.setHeader("ERRORS", e.getMessage());
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
return null;
}
return new ModelAndView("bootstrap_connection_selector", model);
}
然后传递给xslt转换:
<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.xslt.XsltView" />
<property name="prefix" value="/WEB-INF/xsl/" />
<property name="suffix" value=".xslt" />
</bean>
最后进行以下转换:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- parameter for the requested location -->
<xsl:param name="requestedlocation"/>
<!-- start template matching on the connection_details element -->
<xsl:template match="/connection_details">
<!-- duplicate the enclosing <connection_details env=xxx" element -->
<xsl:element name="connection_details">
<xsl:attribute name="env">
<xsl:value-of select="@env"/>
</xsl:attribute>
...
<!-- close the <connection_details> element -->
</xsl:element>
</xsl:template>
</xsl:stylesheet>
server.xml:
<?xml version="1.0" encoding="UTF-8"?>
<Server port="8133" shutdown="SHUTDOWN">
<Listener SSLEngine="on" className="org.apache.catalina.core.AprLifecycleListener"/>
<Listener className="org.apache.catalina.core.JasperListener"/>
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"/>
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/>
<Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener"/>
<GlobalNamingResources>
<Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
</GlobalNamingResources>
<Service name="Catalina">
<Connector connectionTimeout="20000" port="8130" protocol="HTTP/1.1" redirectPort="8131"/>
<Connector port="8132" protocol="AJP/1.3" redirectPort="8131"/>
<Engine defaultHost="localhost" name="Catalina">
<Realm className="org.apache.catalina.realm.LockOutRealm">
<Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/>
</Realm>
<Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t "%r" %s %b" prefix="localhost_access_log." suffix=".txt"/>
<Context docBase="em_bootstrap" path="/bootstrap" reloadable="true" source="org.eclipse.jst.jee.server:em_bootstrap">
</Context></Host>
</Engine>
</Service>
</Server>
答案 0 :(得分:0)
事实证明这是一个不检查过滤器的坏情况。在web.xml中应用了一个缓存过滤器,可能是我没有检查的唯一地方。它错误地使用request.getRequestURI作为缓存的密钥,而实际上它需要整个请求字符串才能正确地将其放入缓存中。
由于