如何在tomcat里面最简单的配置MySQL数据库连接池? 首先,在tomcat根目录下输入/conf/context.xml文件中,加入如下代码: <Resource name="jdbc/mysql" auth="Container" type="javax.sql.DataSource" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/“表名称”" username="*" password="*" maxActive="100" maxIdle="30" maxWait="10000" /> 具体每项的意思我就不解释了,自己百度去。 然后,在程序中调用代码如下: Connection conn = null; //连接池 Context context; try { context = new InitialContext(); DataSource ds = (DataSource) context.lookup("java:comp/env/jdbc/mysql"); conn = ds.getConnection(); } catch (NamingException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); }