首页 > 其他 > 详细

Glassfish数据源配置详解

时间:2015-02-15 23:01:25      阅读:367      评论:0      收藏:0      [点我收藏+]

本文环境:

Win2003 + myeclipse6.01 + sqlserver2000(sp4) 

1、 安装glassfish——启动,在管理控制台下配置如下

首先配置连接池——大家把sqlserver的驱动包放在glassfish安装目录下的lib里。

技术分享

技术分享

接着是配置JNDI(同时选中刚才配置好的连接池)

技术分享

2、测试

常规方法测试1:在servlet中测试代码如下:

try {

Context ctx = new InitialContext();

DataSource ds = (DataSource) ctx.lookup("myds");

Connection conn = ds.getConnection();

System.out.println(conn);

ResultSet rs = conn.createStatement().executeQuery(

"select * from admin ");

while (rs.next()) {

System.out.println(rs.getObject(2));

System.out.println(rs.getObject(3));

}

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

常规方法测试2:在servlet中测试代码如下:

public class HelloWorld extends HttpServlet {

    private @Resource(name="myds") DataSource nt;

    private @Resource(name="welcomeMessage") String welcomeMsg;

 

    protected void processRequest(HttpServletRequest request, HttpServletResponse response)

            throws ServletException, IOException {

        response.setContentType("text/html;charset=UTF-8");

        System.out.println("OK");

        PrintWriter out = response.getWriter();

        Connection conn = nt.getConnection();  

  }

Glassfish数据源配置详解

原文:http://www.cnblogs.com/jymz/p/4293551.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!