maven搭建一个干净的项目,不要用任何模板
//导入这个包可以同时导入大量其依赖的包,简单
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.2.0.RELEASEversion>
dependency>
inversion of control
)容器,其实现方法就是依赖注入(DI,dependency injection
),理解就是:需要的对象不用自己手动去创建,Spring帮你来创建,管理,装配。beans.xml
中标签的属性值,不用去修改代码。1. 实体类 Hello
public class Hello {
private String str;
public String getStr() {
return str;
}
public void setStr(String str) {
this.str = str;
}
public String toString() {
return "Hello{" +
"str='" + str + '\'' +
'}';
}
}
2. 配置文件 beans.xml: 其中bean标签
中的id值相当于对象名,class的值表示要new的类,property标签表示给对象中的属性或字段property设置一个值value。
如果property的值的类型是一个对象,可以使用ref,表示引用spring容器中创建好的对象
<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
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="hello" class="pojo.Hello">
<property name="str" value="Hello Spring"/>
bean>
beans>
3.测试类:ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
这句话表示拿到spring容器,然后用context.getBean("id")
来获取对象,而不用去new了
public class MyTest {
public static void main(String[] args) {
//输入new CPX ,按alter+enter快捷生成
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
在配置文件加载的时候,容器中管理的对象就已经初始化了
依赖:bean对象的创建依赖于容器!
注入:bean对象中的所有属性,由容器来注入!
//实体类
public class User{
public User(String name){
this.name=name;
}
//get(),set(),toString()省略
}
<bean id="user" class="pojo.User">
<constructor-arg index="0" value="zhongliwen"/>
bean>
<bean id="user" class="pojo.User">
<constructor-arg type="java.lang.String" value="zhongliwen"/>
bean>
<bean id="user" class="pojo.User">
<constructor-arg name="name" value="zhongliwen"/>
bean>
实体类Student
private String name;
private Address address; //Address为一个类,里面一些属性
private String[] books;
private List<String> hobbies;
private Map<String,String> card;
private Set<String> games;
private Properties info;
private String wife;
配置文件beans.xml(重点)
//注册Address实体类
<bean id="addr" class="pojo/Address"/>
//注册Student实体类
<bean id="student" class="pojo/Student">
<property name="name" value="Lewis"/>//普通值,用value
<property name="address" ref="addr"/>//对象,用ref,与上面的地址bean的id值相同
<property name="books"> //数组注入
<array>
<value>红楼梦value>
<value>西游记value>
<value>三国演义value>
array>
property>
<property name="hobbies"> //List注入
<list>
<value>听歌value>
<value>敲代码value>
<value>看电影value>
list>
property>
<property name="card"> //Map注入
<map>
<entry key="身份证" value="4306XXXXXXXX"/>
<entry key="银行卡" value="1903XXXXXXXX"/>
map>
property>
<property name="games"> //Set注入
<set>
<value>LOLvalue>
<value>DNFvalue>
<value>CSvalue>
set>
property>
<property name="info"> //properties资源文件注入
<props>
<prop key="url">jdbc:mysql://localhost:3306prop>
<prop key="name">rootprop>
<prop key="password">123456prop>
props>
property> //null注入
<property name="wife">
<null/>
property>
首先需要在beans.xml
文件下的beans标签
中导入C、P的XML约束
xmls:c="http://www.springframework.org/schema/c"
xmls:p="http://www.springframework.org/schema/p"
其中,C对应有参构造,P对应set注入,是他们的简化版
<bean id="user" class="pojo/User" c:name="Lewis"/>
<bean id="user" class="pojo/User" p:name="Lewis"/>
request, session,application
,只能在web开发中使用到,表示对象的生存周期。实体类People,有两个宠物Cat,Dog
public class People{
private String name;
private Cat cat; //猫,狗的实体类省略,知道是一个对象类型就行
private Dog dog;
//setDog(),setCat(),getDog(),getCat(),toString()方法省略
}
byName
自动装配:会自动在容器上下文中查找和people
对象set
方法后面的值对应的bean的id
。如People实体类中有一个setDog方法,且beans.xml文件中有一个id值为dog的bean,因此people bean中可以省略dog的property,会自动注入。<bean id="cat" class="pojo/Cat"/>
<bean id="dog" class="pojo/Dog"/>
<bean id="people" class="pojo/People" autowire="byName">
<property name="name" value="Lewis"/>
//<property name="cat" ref="cat"/>自动装配会自动完成,这两行代码可以省略
//<property name="dog" ref="dog"/>
bean>
byType
自动装配:自动在容器中查找和自己对象类型相同的bean(通一个POJO中)小结:
byName的时候,需要保证所有bean的id唯一,并且这个id要个自动注入的属性的set方法的值一致!
byType的时候,需要保证所有的bean的class唯一,并且这个bean的属性要和自动注入的属性类型一致!
<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"
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"
>
2.开启注解支持
<context:annotation-config/>
<context:component-scan base-package="pojo"/>
3.注解使用:自动装配
@Autowired
:先通过类型(byType),在通过名字(byName),用在对象属性上@resource
:先通过名字(byName),在通过类型(byType),用在对象属性上@Component
:对整个类进行装配。衍生出@Repository,@Service, @Controller
,分别用在Dao层、Service层、Controller层的类上,效果一样。所有属性不用写get/set方法
@Value
:用在属性上,给属性赋值小结:
使用一个JavaConfig
类,来替代原来的beans.xml
@Configuration
@ComponentScan("pojo")
//这个类也会被注入到Spring容器中,其本质就是一个@Component
//@Configuration代表这是一个配置类,用于替代beans.xml
public class LewisConfig {
@Bean
//注册一个bean,相当于xml里的一个bean标签
//方法的名字相当于bean标签的id值
//方法的返回类型相当于bean标签的class属性值
public User getUser(){
return new User();
}
}
使用下面的代码来获得Spring容器,同样用getBean方法来获得容器中的对象
ApplicationContext context = new AnnotationConfigApplicationContext(LewisConfig.class);
方法或功能
,待加入到业务层实现功能拓展,如日志功能###7.1 Spring API接口实现
在保持service层代码不变的基础上,通过AOP新增一些其他的功能。
目录结构树如下
//UserService接口
public interface UserService {
public void add();
public void delete();
public void update();
public void select();
}
//UserServiceImpl实现类
public class UserServiceImpl implements UserService{
public void add() {
System.out.println("增加了一个用户");
}
public void delete() {
System.out.println("删除了一个用户");
}
public void update() {
System.out.println("修改了一个用户");
}
public void select() {
System.out.println("查询了一个用户");
}
}
//afterLog
public class afterLog implements AfterReturningAdvice {
public void afterReturning(Object returnValue, Method method, Object[] objects, Object o1) throws Throwable {
System.out.println("执行了"+method.getName()+"方法,返回的结果为"+returnValue);
}
}
//beforeLog
public class beforeLog implements MethodBeforeAdvice {
public void before(Method method, Object[] objects, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
}
}
配置文件
<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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
">
<bean id="userService" class="com.lewis.service.UserServiceImpl"/>
<bean id="afterLog" class="com.lewis.log.afterLog"/>
<bean id="beforeLog" class="com.lewis.log.beforeLog"/>
<aop:config>
<aop:pointcut id="pointcup" expression="execution(* com.lewis.service.UserServiceImpl.*(..))"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcup"/>
<aop:advisor advice-ref="beforeLog" pointcut-ref="pointcup"/>
aop:config>
beans>
public class DiyPointCut {
public void before(){
System.out.println("===========方法执行前================");
}
public void after(){
System.out.println("===========方法执行后================");
}
}
配置文件
<bean id="userService" class="com.tan.service.UserServiceImpl"/>
<bean id="diyPointCut" class="com.tan.diy.DiyPointCut"/>
<aop:config>
<aop:aspect ref="diyPointCut">
<aop:pointcut id="point" expression="execution(* com.tan.service.UserServiceImpl.add(..))||execution(* com.tan.service.UserServiceImpl.delete(..)))"/>
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
aop:aspect>
aop:config>
在类上使用@Aspect
,表明这个类是一个切面;在方法上使用@Before, @After
等实现通知
目录树
自定义切面
@Aspect
public class AnnotationPointCut {
@Before("execution(* service.UserServiceImpl.*(..))")
public void before(){
System.out.println("===========方法执行前===========");
}
@After("execution(* service.UserServiceImpl.*(..))")
public void after(){
System.out.println("===========方法执行后===========");
}
@Around("execution(* service.UserServiceImpl.*(..))")
public void around(){
System.out.println("===========环绕后===========");
}
}
配置文件
<bean id="annotationPointCut" class="service.UserServiceImpl"/>
<aop:aspectj-autoproxy/>