TomcatSetserverxml
Tomcat server set server xml筆記
設定路徑
apache-tomcat/conf/server.xml
設定檔案上傳大小
設定大小
<Connector connectionTimeout="20000" maxPostSize="209715200" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
調整如下
設定部屬路徑及檔案位址
<Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">
<Context docBase="restApi" path="/restApi" reloadable="true" source="../SpringProjectRestApi"/>
</Host>