我正在使用Spring网络应用程序并面临一种奇怪的行为。
当点击应用程序URL时,浏览器显示空白页面,我应该重新加载页面才能正常工作。
应用程序在nginx后面运行,并且有一大块重定向规则。
我无法找到更具体的词语来描述这个问题。
从哪里开始调试?
我的server.xml
`
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
<Connector port="8080" protocol="HTTP/1.1" URIEncoding="UTF-8"
connectionTimeout="20000" maxThreads="600" minSpareThreads="25" maxSpareThreads="75"
useBodyEncodingForURI="true" enableLookups="false"
redirectPort="8443" />
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
URIEncoding="UTF-8"
keystoreFile="my key store"
keystorePass="my password"
/>
<Connector port="8013" protocol="AJP/1.3" redirectPort="443" URIEncoding="UTF-8"
connectionTimeout="20000" maxThreads="600" minSpareThreads="25" maxSpareThreads="75"
useBodyEncodingForURI="true" enableLookups="false"
/>
<Engine name="Catalina" defaultHost="localhost">
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
</Host>
</Engine>
`