eclipse server整合tomcat


安装配置tomcat 8
http://jingyan.baidu.com/article/ff42efa91132a0c19e220208.html

http://jingyan.baidu.com/article/870c6fc33e62bcb03fe4be90.html

添加Tomcat8到Eclipse Kepler中
http://blog.csdn.net/jbgtwang/article/details/44077853

eclipse没有(添加)”Dynamic Web Project”选项的方法
http://www.dabu.info/eclipse-no-add-dynamic-web-project-option.html

eclipse server整合tomcat
http://www.360doc.com/content/14/0331/18/15454660_365262443.shtml

修改tomcat配置文件server.xml:
              <Resource auth="Container" driverClassName="com.mysql.jdbc.Driver" maxActive="100" maxWait="10000" name="mysql/dbname" password="pwd" type="javax.sql.DataSource" url="jdbc:mysql://localhost:3306/dbname?autoRecommect=true;useUnicode=true;characterEncoding=utf-8;" username="root"/>
          </Context>

猜你喜欢

转载自wuhuizhong.iteye.com/blog/2253809