问题描述
使用 maven 自带的 tomcat,Run Configuration 的 Goals: tomcat:run运行后,在 target 目录下生成了以下文件:tomcat ├conf │ ├tomcat-users.xml │ └web.xml ├logs │ └test.com │ └vod.log ├webapps └work └localEngine └localhost └vod就这些。现在需要对 server.xml 做一些修改,例如:给 <Connector> 节点增加 URIEncoding="UTF-8"应该怎么做?
解决方案
在tomcat插件中配置的,我们项目中是这样配置的:<plugin><groupId>org.codehaus.mojo</groupId><artifactId>tomcat-maven-plugin</artifactId><version>1.1</version><configuration> <port>8080</port> <uriEncoding>UTF-8</uriEncoding> <path>/oa</path></configuration></plugin>
时间: 2025-01-28 01:34:57