Chinaorg

          于千萬人之中,遇見你所遇見的人;于千萬年之中,時間的無涯荒野里,沒有早一步,也沒有晚一步,剛巧趕上了
          我不去想是否能夠成功,既然選擇了遠方,便只顧風雨兼程; 我不去想,身后會不會襲來寒風冷雨,既然目標是地平線,留給世界的只能是背影
          posts - 20, comments - 6, trackbacks - 0, articles - 0

          配置連接池(終于弄好了~~)

          Posted on 2006-10-09 01:05 chinaorg 閱讀(181) 評論(0)  編輯  收藏 所屬分類: JAVA/JSP

          server.xml

          ?<Context path="/bookstore" docBase="bookstore" debug="0"?????reloadable="true">

          ?????<Resource
          ?????????name="jdbc/BookDB"?
          ?????????auth="Container"
          ?????????type="javax.sql.DataSource"
          ?????????driverClassName="com.mysql.jdbc.Driver"?
          ?????????maxActive="100"
          ?????????maxIdle="30" maxWait="10000"
          ?????????url="jdbc:mysql://localhost:3306/bookdb?autoReconnect=true"
          ?????????username="dbuser"?
          ?????????password="1234"?
          ?????????removeAbandoned="true"/>

          ????</Context>




          web.xml

          <?xml version="1.0" encoding="UTF-8"?>
          ?? <web-app>
          ??? <welcome-file-list>
          ??????? <welcome-file>Dbjsp1.jsp</welcome-file>
          ??????? <welcome-file>index.htm</welcome-file>
          ??????? <welcome-file>index.jsp</welcome-file>
          ??? </welcome-file-list>
          ?<resource-ref>
          ??<description>DB connection</description>
          ??<res-ref-name>jdbc/BookDB</res-ref-name>
          ??<res-type>javax.sql.Datasource</res-type>
          ??<res-auth>Container</res-auth>
          ??<res-sharing-scope>Shareable</res-sharing-scope>
          ?</resource-ref>
          </web-app>



          //數據庫連接代碼

          ??Connection con;
          ??Statement stmt;
          ??ResultSet rs;
          ??
          ??Context ctx=new InitialContext();
          ??DataSource ds=(DataSource)ctx.lookup("java:comp/env/jdbc/BookDB");
          ??con=ds.getConnection();
          ??
          ??stmt=con.createStatement();


          主站蜘蛛池模板: 连山| 吉木萨尔县| 佳木斯市| 宜城市| 西平县| 大安市| 洪江市| 侯马市| 温州市| 钟山县| 和政县| 繁昌县| 寿宁县| 鄄城县| 九江市| 牡丹江市| 沁水县| 长泰县| 蛟河市| 武威市| 台前县| 娄底市| 安达市| 万盛区| 肥城市| 根河市| 平罗县| 丰城市| 小金县| 吉林省| 西藏| 新巴尔虎左旗| 应用必备| 昆明市| 天祝| 绥化市| 东阳市| 铜陵市| 荥阳市| 桐乡市| 衢州市|