码迷,mamicode.com
首页 > 其他好文 > 详细

jndi的配置

时间:2014-10-20 21:17:42      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   os   java   sp   on   cti   html   

tomcat的 配置,进入conf->context.xml

<Resource name="mysql"
    auth="Container" type="javax.sql.DataSource"
    driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/test"
    username="root"
    password="123456"
    maxActive="100"//最大活动数
    maxIdle="30"//最大的空闲
    maxWait="10000" //最大的等待时间
     />

 

web中调用

Context c=new InitialContext();
        DataSource ds=(DataSource)c.lookup("java:comp/env/mysql");
         out.println(ds.getConnection());

通过注记获取

@Resource(name="mysql",type=DataSource.class,authenticationType=AuthenticationType.CONTAINER)
public class Test extends HttpServlet {

    @Resource(name="mysql")
    private DataSource ds;
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        try {
            Context c=new InitialContext();
            out.println(ds.getConnection().toString());
        } catch (NamingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        
        out.flush();
        out.close();
    }

 

jndi的配置

标签:style   http   io   os   java   sp   on   cti   html   

原文地址:http://www.cnblogs.com/danmao/p/4038572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!