修改tomcat目录下conf目录下的server.xml
tomcat容器的解码配置 URIEncoding="UTF-8"
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />
tomcat配置部署路径,数据库配置
在<host>节点下
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<Context debug="0" path="" docBase="D:/web/app" reloadable="true" crossContext="false">
<Resource
name="jdbc/myDS"
type="javax.sql.DataSource"
password="root"
driverClassName="com.MySQL.jdbc.Driver"
maxIdle="5"
maxWait="5"
username="password"
url="jdbc:mysql://localhost:3306/mydb"
maxActive="20"/>
</Context>
其中docBase="D:/web/app"声明了web程序的根路径.
name="jdbc/myDS" 定义了数据源的名称,可以在程序中使用 jndi 进行查找获得.