免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1641 | 回复: 2
打印 上一主题 下一主题

求:jsp+tomcat+apache 2+mysql连接数据库的方法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-06-02 10:52 |只看该作者 |倒序浏览
jsp+tomcat+apache 2+mysql都已经安装并且配置好了
现在我想用jsp连接mysql,求配置方法,以及驱动程序需要放到那个文件夹里面,还有连接数据库的jsp代码,望高手指点!

论坛徽章:
0
2 [报告]
发表于 2005-11-28 15:17 |只看该作者
顶上,偶也碰到同样的问题!!请大侠们回答一下!!

论坛徽章:
0
3 [报告]
发表于 2005-11-28 19:42 |只看该作者

re

例如这样,不过我用了Hibernate,余下的相信你自己可以搞定

  1. package com.hibernate.friends;

  2. //import java.sql.SQLException;
  3. //import org.apache.log4j.PropertyConfigurator;
  4. //import org.hibernate.HibernateException;
  5. import org.hibernate.Session;
  6. //import org.hibernate.SessionFactory;
  7. //import org.hibernate.cfg.Configuration;

  8. public class FriendsWrite
  9. {
  10.         Session sess = null;
  11.         HibernateSession session = new HibernateSession();
  12.        
  13.         private void writeDatabase()
  14.         {
  15.                 try
  16.                 {
  17.                         sess = session.returnSession();
  18.                         Friends friend = new Friends();
  19.                         friend.setName("蒙螈");
  20.                         friend.setSex("女");
  21.                         friend.setAge(25);
  22.                         friend.setPhone("13811181660");
  23.                         friend.setAddress("北京对外服务");
  24.                         friend.setMemo("高中同学,目前在北京做对外工作,类似于中介");
  25.                         sess.saveOrUpdate(friend);
  26.                         sess.flush();
  27.                        
  28.                         System.out.println("提交成功");
  29.                 }
  30.                 catch(Exception err)
  31.                 {
  32.                         err.printStackTrace();
  33.                 }
  34.                 finally
  35.                 {
  36.                         if(sess != null)
  37.                         {
  38.                                 try
  39.                                 {
  40.                                         sess.close();
  41.                                         System.out.println("已关闭会话");
  42.                                 }
  43.                                 catch(Exception err)
  44.                                 {
  45.                                         err.printStackTrace();
  46.                                 }
  47.                         }
  48.                 }
  49.         }
  50.        
  51.         public static void main(String args[])
  52.         {
  53.                 new FriendsWrite().writeDatabase();
  54.         }
  55. }

复制代码


  1. ackage com.hibernate.friends;

  2. import org.hibernate.Session;
  3. import org.hibernate.SessionFactory;
  4. import org.hibernate.cfg.Configuration;

  5. public class HibernateSession
  6. {       
  7.         public Session returnSession()
  8.         {
  9.                 Configuration cfg = new Configuration();
  10.                 cfg.configure();
  11.                 SessionFactory sf = cfg.buildSessionFactor
复制代码


  1. <?xml version="1.0"?>
  2. <!DOCTYPE hibernate-mapping  PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  3. <hibernate-mapping>
  4.         <class name="com.hibernate.friends.Friends" table="friends">
  5.                 <id name="id" type="int">
  6.                         <generator class="native"/>
  7.                 </id>
  8.                 <property name="name"/>
  9.                 <property name="sex"/>
  10.                 <property name="age"/>
  11.                 <property name="phone"/>
  12.                 <property name="address"/>
  13.                 <property name="memo"/>
  14.         </class>
  15. </hibernate-mapping>
复制代码


  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3.                 "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4.                 "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6.     <session-factory>
  7.                 <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  8.                 <property name="connection.driver_class">org.gjt.mm.mysql.Driver</property>
  9.                 <property name="connection.url">jdbc:mysql://IP地址/数据库名</property>
  10.                 <property name="connection.username">********</property>
  11.                 <property name="connection.password">********</property>
  12.         <mapping resource="com/hibernate/friends/Friends.hbm.xml"/>
  13.     </session-factory>
  14. </hibernate-configuration>
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP