java中 数据库和web页面的连接 spring配置中,ref=dataSource背后的方法调用

我遇到得错误就是 在写 用idea 写连接数据库 得测试 下面是我输出得结果这是我输出得结果
和代码

<?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:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
			    http://www.springframework.org/schema/beans/spring-beans.xsd
			    http://www.springframework.org/schema/context
			    http://www.springframework.org/schema/context/spring-context.xsd
			    http://www.springframework.org/schema/aop
			    http://www.springframework.org/schema/aop/spring-aop.xsd
			    http://www.springframework.org/schema/tx
			    http://www.springframework.org/schema/tx/spring-tx.xsd
			    http://www.springframework.org/schema/mvc
			    http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--    service层配置文件开始-->
    <!--    配置事务管理器-->
    <!--    组件扫描-->
    <context:component-scan base-package="com.laoyi.service"/>
    <!--    aop面向切面编程,切面就是切入点和通知得组合-->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>
    <!--    配置事务得通知-->
    <tx:advice id="advice">
        <tx:attributes>
            <tx:method name="save*" propagation="REQUIRED"/>
            <tx:method name="update*" propagation="REQUIRED"/>
            <tx:method name="delete*" propagation="REQUIRED"/>
            <tx:method name="find*" read-only="true"/>
            <tx:method name="*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>
    <!--   配置切面-->
    <aop:config>
        <aop:pointcut id="pointcut" expression="execution(* com.laoyi.service.impl.*.*(..))"/>
        <aop:advisor advice-ref="advice" pointcut-ref="pointcut"/>
    </aop:config>
    <!--    service层配置文件结束-->
</beans>

===========================

标题

在连接service得时候 报错 bean初始化失败` 
后来发现是我的

<property name=“dataSource” ref="dataSource"错误了 我把dataSource中得S写成小写了。
dataSource这是固定写法 引用为
在这里插入图片描述

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
Java ,如果一个方法需要调用另一个方法,且两个方法都需要开启事务,可以使用 Spring 提供的声明式事务管理来实现。具体如下: 1. 在 Spring配置文件,开启事务管理器。 ```xml <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <tx:annotation-driven transaction-manager="transactionManager" /> ``` 2. 在需要开启事务的方法上加上 `@Transactional` 注解,指定事务的传播行为为 `Propagation.REQUIRED`,表示如果当前存在事务,则加入该事务,如果不存在事务,则创建一个新事务。 ```java @Transactional(propagation = Propagation.REQUIRED) public void methodA() { // do something methodB(); } @Transactional(propagation = Propagation.REQUIRED) public void methodB() { // do something } ``` 在以上代码,当 `methodA()` 被调用时,会开启一个事务,并调用 `methodB()`,由于 `methodB()` 也被标注了 `@Transactional` 注解,因此会加入到 `methodA()` 开启的事务。如果 `methodB()` 抛出了异常,则整个事务都会回滚。 注意,如果两个方法不是在同一个类,需要通过依赖注入的方式调用另一个方法,并且调用方法不能使用 `private` 修饰符,因为 Spring 是通过代理来管理事务的,如果方法是私有的,代理将无法访问到该方法。所以需要将方法的访问修饰符设置为 `public` 或 `protected`。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

代码农哈慈

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值