随笔分类 -  Java

摘要:参考 http://www.conglin-site.com/document/html/1494763157.html 1. pom <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artif 阅读全文
posted @ 2018-01-06 12:41 homer3000 阅读(119) 评论(0) 推荐(0)
摘要:maven自动部署web项目到tomcat8(向下兼容7)2014-08-29 10:52网站上线以后,为了保证网站运行的连续性,有新功能更新时,不能重启Tomcat服务器去部署新增功能。因此,就研究一下用maven的自动部署功能。1首先要保证自己电脑上装了Tomcat服务器进入Tomcat安装目录,打开..\conf\tomcat-users.xml,在这个配置文件中加入以下内容: 这里有问题... 阅读全文
posted @ 2015-06-30 03:35 homer3000 阅读(292) 评论(0) 推荐(0)
摘要:Class.forName(driverName);Sql_conn=DriverManager.getConnection(dbURL,userName,userPwd);Statementstmt=Sql_conn.createStatement();ResultSetrs=stmt.execu... 阅读全文
posted @ 2015-04-19 10:51 homer3000 阅读(202) 评论(0) 推荐(0)