spring(千锋逆战)

手动添加webapp包,包下建立WEB-INF,及建立web.xml文件即可正常使用;添加tomcat的依赖,找到tomcat的run方法即可运行web项目;


添加spring的依赖

spring-context:      添加完成后自动导入6个相关的依赖,在pom.xml中 添加如下图的依赖

如图

<bean id="girl "  class="(类名,自动导入全包名)"  scope=" 默认值 singlrton ">

<property   name="  "  value="   "    />使用无参的构造器

<constructor-arg name="  " value=" " />使用有参的构造器

<property   name="  "  ref="   "    />对象的导入用

有参构造方法name不写,默认重上倒下的顺序,也可以使用index="  "比较 0开始,  type="  "类型标记

</bean>

ApplicationContext ac =new ClassPathXmlApplicationContext("bean.xml");读取这个文件

ac.getBean("b1");得到项目的数据

spring 添加 P 属性  点击 namespace 勾选 p 属性,勾选上之后再xml中就会多一条p属性的连接;

<bean   id="  "  class="  "  p:成员变量="  "  ></bean> 添加变量;

<bean   id="  "  class="  "  p:成员变量-ref="  "  ></bean> 添加对象;

ac.close;最后要关闭资源


java代理

代理对象存在的价值主要用于拦截对真实业务对象的访问.代理对象应该具有和目标对象相同的方法(真实业务对象).


静态代理实现原理


第一种创建方式

public class UserFactory {

public static IUserServicegetUserService(){

IUserService us =new UserservcieImpl();

        MyAspect ma =new MyAspect();

        IUserService ius = (IUserService) Proxy.newProxyInstance(UserFactory.class.getClassLoader(), us.getClass().getInterfaces(), new InvocationHandler() {

@Override

            public Objectinvoke(Object proxy, Method method, Object[] args)throws Throwable {

ma.before();

                Object obj = method.invoke(us, args);

                ma.after();

                return obj;

            }

});

        return ius;

    }

}

第二种创建方式

使用Spring中的一个增强类来实现aop方式

    *      1.  创建Enhancer对象

    *      2.  设置增强类Enhancer的superClass

    *      3.  设置Enhancer对象的回调

    *      4.  通过eh对象的create()方法来得到指定的对象

public class UserFactory {

public static IUserServicegetUserService() {

Enhancer  en =new Enhancer();  //创建Enhancer对象

        MyAspect my =new MyAspect();

        en.setSuperclass(lianxi2.IUserService.class);//设置增强类Enhancer的superClass

        en.setCallback(new MethodInterceptor() {//设置Enhancer对象的回调

public Objectintercept(Object o, Method method, Object[] objects, MethodProxy methodProxy)throws Throwable {

my.before();

              Object obj = method.invoke(objects);

              my.after();

return null;

            }

});

        IUserService ius= (IUserService) en.create();//通过eh对象的create()方法来得到指定的对象

        return  ius;

    }

第三种实现方式

beans.xml配置 (要放在resources资源下):

<?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 http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="us" class="com.qfedu.aop03.UserServiceImpl" />

    <bean id="my" class="com.qfedu.aop03.MyAspect" />

    <!--

        ProxyFactoryBean代理的FactoryBean对象,我们现在要代理的是us

            包含四个属性注入:

                1.  interfaces: 接口对象们

                    <list>

                        <value>com.qfedu.aop03.IUserService</value>

                        <value>com.qfedu.aop03.IUserService</value>

                        <value>com.qfedu.aop03.IUserService</value>

                    </list>

                2.  target:目标对象,哪个对象将被以代理的方式创建

                3.  interceptorNames:拦截对象的名称,自定义的MethodInterceptor对象,注意它的包结构组成

                4.  optimize:boolean类型的值:

                        true:强制使用cglib的动态代理方式

                        false:使用jdk自带的动态代理

                        cglib:code generation library,代码生成库,性能更高

    -->

    <bean id="proxy" class="org.springframework.aop.framework.ProxyFactoryBean">

        <property name="interfaces" value="com.qfedu.aop03.IUserService" />

        <property name="target" ref="us" />

        <property name="interceptorNames" value="my" />

        <property name="optimize" value="true" />

    </bean>

</beans>

Myaspect


import org.aopalliance.intercept.MethodInterceptor;

import org.aopalliance.intercept.MethodInvocation;

public class MyAspect implements MethodInterceptor {

    private void before(){

        System.out.println("---------before----------");

    }

    private void after(){

        System.out.println("---------after----------");

    }

    @Override

    public Object invoke(MethodInvocation invocation) throws Throwable {

        before();

        //  业务处理方法的调用

        Object obj = invocation.proceed();

        after();

        return obj;

    }

}

测试类:

import org.junit.Test;

import org.springframework.context.ApplicationContext;

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestAOP03 {

    @Test

    public void testAOP03(){

        ApplicationContext ac = new ClassPathXmlApplicationContext("com/qfedu/aop03/beans.xml");

        IUserService us = ac.getBean("proxy", IUserService.class);

        Object o = new Object();

        System.out.println(us.getAllUser());

        System.out.println(us.deleteUser(1));

        System.out.println(us.saveUser(o));

        System.out.println(us.updateUser(o));

    }

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351