原文:
- 拷贝MySQL的JDBC驱动到Tomcat的lib路径下
- 配置全局数据源或者单个Web应用的局部数据源
局部数据源
在Tomcat的conf/Catalina/localhost下的 app.xml中添加
全局数据源
/conf/server.xml <Context>元素,添加如上<Resource/>元素
3. 在Tomcat4.x或者之前的版本中需要在web.xml中添加
Datasource example jndi/test javax.sql.DataSource Container
4、在Java代码中使用
Context ctx = new InitialContext(); String strLookup = "java:comp/env/jdbc/test"; DataSource ds =(DataSource) ctx.lookup(strLookup); Connection con = ds.getConnection(); Statement stmt=conn.createStatement(); ResultSet rs=stmt.executeQuery("select * from user");
posted on 2014-04-15 15:17 阅读( ...) 评论( ...)