spring
sforeverd
这个作者很懒,什么都没留下…
展开
-
spring-事务管理
<!--配置声明式事务--><bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <constructor-arg ref="dataSource" /></bean><!--结合AOP实现事务织入--><!--配置事务通知--><tx:advice id="t原创 2021-05-06 19:41:19 · 71 阅读 · 0 评论 -
spring整合mybatis
导入相关jar包<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency>原创 2021-05-05 17:57:46 · 110 阅读 · 0 评论 -
spring—AOP
首先需要导入依赖包<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --><dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.9.6</version></dep原创 2021-05-03 16:58:02 · 126 阅读 · 0 评论 -
spring-动态代理
接口//租房public interface Rent { public void rent();}真实对象public class Host implements Rent { public void rent() { System.out.println("房东需要出租房子"); }}代理角色package com.spring.proxy;import java.lang.reflect.InvocationHandler;impor原创 2021-05-03 14:49:13 · 97 阅读 · 0 评论 -
spring—自动化装配bean
bean的自动装配:在bean对象很少的时候,我们可以通过xml文件中的< property >或者< constructor-arg >进行配置,但是随着工程量的不断增加,xml文件中的代码会很繁琐,此时我们可以通过spring提供的自动装配机制简化xml文件中的代码,减少代码的编写,提高程序的可阅读性1.编写测试对象2.xml配置文件的编写<?xml version="1.0" encoding="UTF-8"?><beans xmlns="h原创 2021-04-29 17:49:12 · 81 阅读 · 0 评论 -
spring—DI依赖注入
依赖注入(Dependency Injection,DI)。依赖 : 指Bean对象的创建依赖于容器注入 : 指Bean对象所依赖的资源由容器来设置和装配 <bean id="address" class="com.spring.pojo.Address"/> <bean id="student" class="com.spring.pojo.Student"> <!--第一种,普通值注入 value--> <property原创 2021-04-29 15:06:02 · 69 阅读 · 0 评论 -
第一个Spring程序—HelloSpring
1.Maven项目中导入jar包依赖<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.5</version> </dependency></d原创 2021-04-27 21:01:05 · 126 阅读 · 0 评论