Spring
barni
这个作者很懒,什么都没留下…
展开
-
pring的P命名和C命名
1、需要引入 xmlns:p="http://www.springframework.org/schema/p" xmlns:c="http://www.springframework.org/schema/c" 2、p命名空间,是属性注入 c命名空间,是构造器注入原创 2021-09-15 17:54:48 · 55 阅读 · 0 评论 -
spring.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" xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.spring.原创 2021-09-12 09:56:13 · 763 阅读 · 0 评论 -
Spring事务
在spring-dao.xml配置文件设置分为三步(实现原理是aop切面编程) 一、获取事务管理者 <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <constructor-arg ref="dataSource" /> </bean> 二、配置那些方法需要开始事务 <原创 2021-09-10 13:48:34 · 55 阅读 · 0 评论 -
mybatis-spring配置
1、导入Jar包 <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>2.0.6</version> </dependency> 如果pring需要操作数据库,需要导入以下包 <dependency> <groupId>o原创 2021-09-09 22:16:40 · 160 阅读 · 0 评论 -
利用Spring接口实现AOP
配置文件 <?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:context原创 2021-09-09 16:07:13 · 144 阅读 · 0 评论 -
spring动态代理
动态生成代理 package com.sangeng.Dem03; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; public class ProxyinvocationHangler implements InvocationHandler { //被代理的接口 private Object target;原创 2021-09-09 14:46:17 · 49 阅读 · 0 评论 -
pring常用注解
@Autowuird:自动装配通过类型,名字 @nullable 字段标志了这个注解,说明这个字段可以为null @Resource:自动装配通过名字,类型 @component:组件放这个类被pring 管理了,就是bean在类上,说明 @value:注入数据,可以放在属性上,也可以放在set方法上。 ...原创 2021-09-09 08:14:00 · 225 阅读 · 0 评论