struts2 spring 整合 不用hibernate连接数据库

struts2spring整合不用hibernate连接数据库求详解,最好贴代码... struts2 spring 整合 不用hibernate连接数据库

求详解,最好贴代码
展开
 我来答
zhaotao_king
2010-06-28 · TA获得超过2455个赞
知道大有可为答主
回答量:863
采纳率:0%
帮助的人:1144万
展开全部
使用spring的数据库连接,配置文件如下

使用数据库连接时,只需继承spring的org.springframework.orm.hibernate3.support.HibernateDaoSupport即可,该类中封装了数据库操作的方法,具体可以看下Api,有什么问题也可以百度Hi我!

applicationContext-db.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName"
value="com.microsoft.sqlserver.jdbc.SQLServerDriver">
</property>
<property name="url"
value="jdbc:sqlserver://localhost:1433;DatabaseName=shujuku">
</property>
<property name="username" value="sa"></property>
<property name="password" value="123"></property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.SQLServerDialect
</prop>
<prop key="show_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>com/model/SdAdmin.hbm.xml</value>

</list>
</property>
</bean>
</beans>
andylieonian
2010-07-01
知道答主
回答量:4
采纳率:0%
帮助的人:4961
展开全部
最好的办法应该是这样的吧,首先让服务器来提供数据源,然后在applicationcontext.xml中使用JNDI获取数据源,并把它当做spring的一个授管Bean,Ioc给需要连接数据库的义务逻辑...
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式