Spring個人筆記

来源:https://www.cnblogs.com/huyuqing/archive/2020/02/29/12385856.html
-Advertisement-
Play Games

xml配置 1.xml基本結構: 其中id是bean字元串,bean的唯一標識符,相當於對象名,class是bean類名的完全限定路徑 2.別名 起別名有兩種方式, 1.通過alias 2.通過bean中的name屬性 用bean中name更高級,可以起多個別名 IoC創建對象方式 1.通過無參構造 ...


xml配置

1.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.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="..." class="...">  
        <!-- collaborators and configuration for this bean go here -->
    </bean>

    <bean id="..." class="...">
        <!-- collaborators and configuration for this bean go here -->
    </bean>

    <!-- more bean definitions go here -->

</beans>

其中id是bean字元串,bean的唯一標識符,相當於對象名,class是bean類名的完全限定路徑

2.別名

起別名有兩種方式,

1.通過alias

<bean id="helloWorld" class="com.hyq.pojo.HelloWorld">
        <property name="hello" value="abc"/>
    </bean>
    <alias name="helloWorld" alias="dsd"/>
name=hello是創建對象的變數名,相當於Helloworld hello= new Helloworld();
value 為參數賦值,
ApplicationContext context = new                       ClassPathXmlApplicationContext("ApplicationContext.xml");解析xml文件的固定格式(不止一種)
        HelloWorld helloWorld = (HelloWorld) context.getBean("helloWorld");獲取類對象,
        HelloWorld helloWorld = (HelloWorld) context.getBean("dsd");也可以用別名獲取對象

2.通過bean中的name屬性

<bean id="helloWorld" class="com.hyq.pojo.HelloWorld" name="dsdd,h1">
        <property name="hello" value="abc"/>
    </bean>
ApplicationContext context = new                       ClassPathXmlApplicationContext("ApplicationContext.xml");解析xml文件的固定格式(不止一種)
        HelloWorld helloWorld = (HelloWorld) context.getBean("helloWorld");獲取類對象,
        HelloWorld helloWorld = (HelloWorld) context.getBean("h1");也可以用別名獲取對象

用bean中name更高級,可以起多個別名

IoC創建對象方式

1.通過無參構造來創建對象,系統預設

2.通過有參構造函數來創建。(構造器construction )

​ 1.下標賦值

<bean id="helloWorld" class="com.hyq.pojo.HelloWorld">
        <constructor-arg index="0" value="abc"/>
    </bean>
index:下標是從有參構造函數中括弧的參數開始算起

​ 2.類型賦值(不建議使用)

<bean id="helloWorld" class="com.hyq.pojo.HelloWorld">
        <constructor-arg type="java.lang.String" value="ds"/>
    </bean>
當有參構造函數括弧中有兩個string類型的變數時,無法使用

總結:在xml註冊的bean對象,只要註冊,無論使不使用,對象都被創建

DI依賴註入

分為以下幾種

Student實體類

package com.hyq.pojo;

import java.util.*;

public class Student {
    private String name;
    private Address address;
    private String[] array;
    private List<String> hobby;
    private Map<String,String> books;
    private Set<String> movie;
    private Properties properties;
    private String wife;

    public Student() {
    }

    public Student(String name,String wife) {
        this.name = name;
        this.wife = wife;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Address getAddress() {
        return address;
    }

    public void setAddress(Address address) {
        this.address = address;
    }

    public String[] getArray() {
        return array;
    }

    public void setArray(String[] array) {
        this.array = array;
    }

    public List<String> getHobby() {
        return hobby;
    }

    public void setHobby(List<String> hobby) {
        this.hobby = hobby;
    }

    public Map<String, String> getBooks() {
        return books;
    }

    public void setBooks(Map<String, String> books) {
        this.books = books;
    }

    public Set<String> getMovie() {
        return movie;
    }

    public void setMovie(Set<String> movie) {
        this.movie = movie;
    }

    public Properties getProperties() {
        return properties;
    }

    public void setProperties(Properties properties) {
        this.properties = properties;
    }

    public String getWife() {
        return wife;
    }

    public void setWife(String wife) {
        this.wife = wife;
    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", address=" + address +
                ", array=" + Arrays.toString(array) +
                ", hobby=" + hobby +
                ", books=" + books +
                ", movie=" + movie +
                ", properties=" + properties +
                ", wife='" + wife + '\'' +
                '}';
    }
}

Address實體類

package com.hyq.pojo;

public class Address {

    private String address;

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    @Override
    public String toString() {
        return "Address{" +
                "address='" + address + '\'' +
                '}';
    }
}

ApplicationContext的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.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="address" class="com.hyq.pojo.Address">
        <property name="address" value="河南"/>
    </bean>

    <bean id="student" class="com.hyq.pojo.Student">
        <!-- 普通註冊 -->
        <property name="name" value="小明"/>
        <!-- bean註冊 -->
        <property name="address" ref="address"/>
        <!-- 數組註冊 -->
        <property name="array" >
            <array>
                <value>00</value>
                <value>11</value>
                <value>22</value>
            </array>
        </property>
        <!-- map註冊 -->
        <property name="books">
            <map>
                <entry key="a" value="語文"/>
                <entry key="b" value="數學"/>
                <entry key="c" value="英語"/>
            </map>
        </property>
        <!-- list註冊 -->
        <property name="hobby">
            <list>
                <value>音樂</value>
                <value>美術</value>
                <value>電影</value>
            </list>
        </property>
        <!-- set註冊 -->
        <property name="movie">
            <set>
                <value>中國電影</value>
                <value>美國電影</value>
                <value>印度電影</value>
            </set>
        </property>
        <!-- property註冊 -->
        <property name="properties">
            <props>
                <prop key="driver">com.mysql</prop>
                <prop key="user">root</prop>
                <prop key="password">123</prop>
            </props>
        </property>
        <!-- null註冊 -->
        <property name="wife">
            <null />
        </property>
    </bean>

</beans>

P命名空間註冊需要導入約束信息:xmlns:p="http://www.springframework.org/schema/p"

c命名空間註冊需要導入約束信息:xmlns:c="http://www.springframework.org/schema/c"

引入後的ApplicationContext的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"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:c="http://www.springframework.org/schema/c"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="student" class="com.hyq.pojo.Student"
          p:name="xiaoHu"/>
    <bean id="student1" class="com.hyq.pojo.Student"
          c:name="a"
          c:wife="0"/>

</beans>

測試類

public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("ApplicationContext1.xml");
        Student student =  context.getBean("student",Student.class);student--->student1
        System.out.println(student);
    }

總結:C命名空間是基於有參構造器,P命名空間是基於property

bean的自動裝配

不使用自動裝配的配置文件如下:

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

   <bean id="cat" class="com.hyq.pojo.Cat"/>
    <bean id="dog" class="com.hyq.pojo.Dog"/>

    <bean id="people" class="com.hyq.pojo.People">
        <property name="name" value="低調"/>
        <property name="cat" ref="cat"/>
        <property name="dog" ref="dog"/>
    </bean>
</beans>

dog類如下:

public class Dog {
    public void eat(){
        System.out.println("吃狗糧");
    }
}

cat類如下:

public class Cat {
    public void eat(){
        System.out.println("吃貓糧");
    }
}

people類如下:

package com.hyq.pojo;

public class People {
    private String name;
   
    private Cat cat;
   
    private Dog dog;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Cat getCat() {
        return cat;
    }

    public void setCat(Cat cat) {
        this.cat = cat;
    }

    public Dog getDog() {
        return dog;
    }

    public void setDog(Dog dog) {
        this.dog = dog;
    }

}

1.使用byName的配置文件如下:

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

   <bean id="cat" class="com.hyq.pojo.Cat"/>
    <bean id="dog" class="com.hyq.pojo.Dog"/>

    <bean id="people" class="com.hyq.pojo.People" autowire="byName">
        <property name="name" value="低調"/>
    </bean>
</beans>
在bean中有autowire的屬性,byName的原理是<bean id="dog" class="com.hyq.pojo.Dog"/>中的id必須唯一,且這個id必須和com.hyq.pojo.Dog類中setDog對應,不能寫成setDog1.需要一 一對應。

2.使用byType的配置文件如下:

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

   <bean id="cat" class="com.hyq.pojo.Cat"/>
    <bean id="dog" class="com.hyq.pojo.Dog"/>

    <bean id="people" class="com.hyq.pojo.People" autowire="byType">
        <property name="name" value="低調"/>
    </bean>
</beans>
原理:在<bean id="dog" class="com.hyq.pojo.Dog"/>中,class必須唯一,不能重覆,也就說該類只能用一次,和 id沒有關係,可以省略不寫。

3.註解實現自動裝配

使用註解必須:

1.導入約束,

2.配置註解的支持:

使用註解配置的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"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd">

    <context:annotation-config/>

</beans>

此時people中的欄位cat和dog可以使用註解配置,就不用在xml中使用byName或者byType了。

    @Autowired
    private Cat cat;
    @Autowired
    private Dog dog;
使用了註解配置,只需要在欄位的上方加上@autowired即可。
裡面的set方法也可以不寫。

4.補充:

欄位中如果有@Nullable,說明這個欄位可以為空

<context:component-scan base-package="com.hyq.pojo"/>
component:成分;scan:掃描
可以掃描指定包下的註解

使用註解開發

== 在spring4之後,要使用註解開發,必須要有aop的包 ==

1.component-scan,屬性註入

在xml中使用時,可以簡化配置,只需要在其他類名上標註@Component即可,如下:

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

    <context:component-scan base-package="com.hyq.pojo"/>
    <context:annotation-config/>

</beans>

User類如下:

package com.hyq.pojo;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

//此處使用了註解配置,相當於 <bean id="user" class="com.hyq.pojo.User"/>
@Component
public class User {
    //此處使用了註解配置,可以簡化name的賦值,相當於<property name="name" value="張三"/>
    @Value("張三")
    private String name;

    public String getName() {
        return name;
    }
}

2.動態代理

想實現某個介面,你需要寫一個類,然後在類名字的後面給出“implements”XXX介面。這才是實現某個介面:

public interface MyInterface {
  void fun1();
  void fun2();
}
public class MyInterfaceImpl implements MyInterface {
  public void fun1() {
    System.out.println("fun1()");
  }
  public void fun2() {
    System.out.println("fun2()");
  }
}

動態代理技術可以通過一個方法調用就可以生成一個對指定介面的實現類對象。

Class[] cs = {MyInterface.class};
MyInterface mi = (MyInterface)Proxy.newProxyInstance(loader, cs, h);

​ 上面代碼中,Proxy類的靜態方法newProxyInstance()方法生成了一個對象,這個對象實現了cs數組中指定的介面。沒錯,返回值mi是MyInterface介面的實現類。你不要問這個類是哪個類,你只需要知道mi是MyInterface介面的實現類就可以了。你現在也不用去管loader和h這兩個參數是什麼東東,你只需要知道,Proxy類的靜態方法newProxyInstance()方法返回的方法是==實現了指定介面的實現類對象==,甚至你都沒有看見實現類的代碼。  

​ 動態代理就是在運行時生成一個類,這個類會實現你指定的一組介面,而這個類沒有.java文件,是在運行時生成的,你也不用去關心它是什麼類型的,你只需要知道它實現了哪些介面即可。

newProxyInstance()方法的參數
  Proxy類的newInstance()方法有三個參數:
    ClassLoader loader:它是類載入器類型,你不用去理睬它,你只需要知道怎麼可以獲得它就可以了:MyInterface.class.getClassLoader()就可以獲取到ClassLoader對象,沒錯,只要你有一個Class對象就可以獲取到ClassLoader對象;
    Class[] interfaces:==指定newProxyInstance()方法返回的對象要實現哪些介面==,沒錯,可以指定多個介面,例如上面例子只我們只指定了一個介面:Class[] cs = {MyInterface.class};
    InvocationHandler h:它是最重要的一個參數!它是一個介面!它的名字叫調用處理器!你想一想,上面例子中mi對象是MyInterface介面的實現類對象,那麼它一定是可以調用fun1()和fun2()方法了,難道你不想調用一下fun1()和fun2()方法麽,它會執行些什麼東東呢?其實無論你調用代理對象的什麼方法,它都是在調用InvocationHandler的invoke()方法!

InvocationHandler的invoke()方法   

InvocationHandler的invoke()方法的參數有三個:

Object proxy:代理對象,也就是Proxy.newProxyInstance()方法返回的對象,通常我們用不上它;   Method method:表示當前被調用方法的反射對象,例如mi.fun1(),那麼method就是fun1()方法的反射對象;Object[] args:表示當前被調用方法的參數,當然mi.fun1()這個調用是沒有參數的,所以args是一個零長數組。

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

method是方法對象

obj是該方法對象所在的類對象實例

args是方法參數

返回是Object類型,因為編譯時無法獲得方法輕易獲得所要調用方法的返回類型,因此使用了“萬能型”  

最後要說的是invoke()方法的返回值為Object類型,它表示當前被調用的方法的返回值,當然mi.fun1()方法是沒有返回值的,所以invoke()返回的就必須是null了。

實例1:

public interface Waiter {
  public void serve();
}
public class MyWaiter implements Waiter {
  public void serve() {
    System.out.println("服務...");
  }
}

  現在我們要對MyWaiter對象進行增強,要讓它在服務之前以及服務之後添加禮貌用語,即在服務之前說“您好!”,在服務之後說:“很高興為您服務!”。

public class MainApp1 {
  public static void main(String[] args) {
    ClassLoader loader = MainApp1.class.getClassLoader();
    Class[] cs = {Waiter.class};
    Waiter target = new MyWaiter();
    MyInvocationHandler h = new MyInvocationHandler(target);
    Waiter waiter = (Waiter)Proxy.newProxyInstance(loader, cs, h);
    waiter.serve();
  }
}
class MyInvocationHandler implements InvocationHandler {
  public Waiter target;
  public MyInvocationHandler(Waiter target) {
    this.target = target;
  }
  public Object invoke(Object proxy, Method method, Object[] args)throws Throwable {
    System.out.println("您好!");
    Object result = method.invoke(target, args);
    System.out.println("很高興為您服務!");
    return result;
  }
}

實例2

public interface Rent {
    public void rent();
}
public class Host implements Rent {
    public void rent() {
        System.out.println("房東出租房子");
    }
}
public class ProxyDeal implements InvocationHandler {
    private Rent rent;

    public void setRent(Rent rent) {
        this.rent = rent;
    }

    public Object getProxy(){
        return Proxy.newProxyInstance(this.getClass().getClassLoader(),
                rent.getClass().getInterfaces(),this);
    }
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

        System.out.println("前");
        Object invoke = method.invoke(rent, args);
        System.out.println("後");
        return invoke;
    }
}
public void test(){
        Rent rent = new Host();
        ProxyDeal proxyDeal = new ProxyDeal();
        proxyDeal.setRent(rent);
        Object proxy = proxyDeal.getProxy();
        Rent rent1 = (Rent)proxy;
        rent1.rent();

    }

AOP面向切麵編程

AOP的相關術語及應用

  • Aspect:表示切麵。切入業務流程的一個獨立模塊 。實際上是若幹個====

  • join point:表示連接點。是業務流程在運行過程中需要插入切麵的具體位置。

  • Advice: 表示通知。是切麵的具體實現方法。==它是類中的一個方法== 可分為

    • 前置通知(Before)

    • 後置通知(AfterRunning)

    • 異常通知(AfterThrowing)

    • 最終通知(After)

    • 環繞通知(Around)

      實現方法具體屬於哪類通知,是在配置文件和註解中指定的。

  • Pointcut :表示切入點。定義通知應該切入到哪些連接點上,不同的通知通常需要切入到不同的連接點上

  • Target: 表示目標對象。被一個或者多個切麵所通知的對象。

  • Proxy :表示代理對象。將通知應用到目標對象之後被動態創建的對象。可以簡單地理解為,代理對象為目標對象的業務邏輯功能加上被切入的切麵所形成的對象。

  • Weaving :表示切入,也稱為織入。將切麵應用到目標對象從而創建一個新的代理對象的過程。這個過程可以發生在編譯期、類裝載期及運行期。

原生方式實現

User介面和UserImpl類位於Dao包下

public interface User {
    public void add();
    public void delete();
    public void update();
    public void query();
}
public class UserImpl implements User {
    public void add() {
        System.out.println("增加了一個用戶");
    }

    public void delete() {
        System.out.println("刪除了一個用戶");
    }

    public void update() {
        System.out.println("修改了一個用戶");
    }

    public void query() {
        System.out.println("查詢了一個用戶");
    }
}

AfterLog和BeforeLog位於log包下

public class AfterLog implements AfterReturningAdvice {
    public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println("執行了"+method.getName()+"的方法");
    }
}
public class BeforeLog implements MethodBeforeAdvice {
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println("執行了"+method.getName()+"的方法,");
    }
}

註冊類

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

<!--    註冊bean   -->
    <bean id="userImpl" class="com.hyq.dao.UserImpl"/>
    <bean id="afterLog" class="com.hyq.log.AfterLog"/>
    <bean id="beforeLog" class="com.hyq.log.BeforeLog"/>

<!--    切入點   -->
    <aop:config>
        execution(切入的指定位置)
        <aop:pointcut id="pointcut" expression="execution(* com.hyq.dao.UserImpl.*(..))"/>
        
        <aop:advisor advice-ref="beforeLog" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>

    </aop:config>
</beans>

pointcut:切入點,要插入到指定的位置。

execution語法:

其中訪問修飾符可以省略

advice:通知

引用advice-ref:的類切入到pointcut-ref:這個切入點。

測試類:

public class MyTest {
    @Test
    public void test(){
        ApplicationContext context = new ClassPathXmlApplicationContext(
                "applicationContext.xml");
        User user = (User)context.getBean("userImpl");
        user.add();
    }
}

輸出結果:

​ 執行了add的方法,
增加了一個用戶
執行了add的方法

自定義類來實現AOP

diyPointCut類:

public class DiyPointCut {
    public void before(){
        System.out.println("執行前");
    }
    public void after(){
        System.out.println("執行後");
    }
}

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

<!--    註冊bean   -->
    <bean id="userImpl" class="com.hyq.dao.UserImpl"/>
    <bean id="afterLog" class="com.hyq.log.AfterLog"/>
    <bean id="beforeLog" class="com.hyq.log.BeforeLog"/>

<!--    方式二:自定義類實現-->
<!--    註冊Bean-->
    <bean id="diyPointCut" class="com.hyq.diy.DiyPointCut"/>

    <aop:config>
<!--        切麵-->
        <aop:aspect ref="diyPointCut">
<!--            切入點-->
            <aop:pointcut id="pointcut" expression="execution(* com.hyq.dao.UserImpl.*(..))"/>
<!--            通知          -->
            <aop:before method="before" pointcut-ref="pointcut"/>
            <aop:after method="after" pointcut-ref="pointcut"/>

        </aop:aspect>
    </aop:config>
</beans>

ref:指向指定類

註解實現AOP

Annotation類

@Aspect//這是一個切麵
public class Annotation {
    //切入點
    @Before("execution(* com.hyq.dao.UserImpl.*(..))")
    public void before(){
        System.out.println("----前----");
    }
}
<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop.xsd">

<!--    註冊bean   -->
    <bean id="userImpl" class="com.hyq.dao.UserImpl"/>
    <bean id="afterLog" class="com.hyq.log.AfterLog"/>
    <bean id="beforeLog" class="com.hyq.log.BeforeLog"/>

<!--    方式三-->
    <bean id="annotation" class="com.hyq.annotationAop.Annotation"/>

<!--    開啟註解-->
    <aop:aspectj-autoproxy/>
</beans>

==註意:==使用註解需要開啟註解。

<!--    開啟註解-->
    <aop:aspectj-autoproxy/>

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1、格式 符號為大括弧 數據為鍵值對形式出現(字典數據與數據順序沒有關係,即字典不支持下標) 各個鍵值對之間逗號隔開 2、定義的類型 # 有數據 dict1 = {'name': '小明', 'sex': '男'} # 空字典 dict2 = {} dict3 =dict() # 函數定義 3、常用 ...
  • Spring Cloud官網: 本篇主要講 "Spring Cloud Config" ,參考內容如下: "Spring Cloud Config 2.2.1.RELEASE參考文檔" "Spring Cloud Config 實現配置中心,看這一篇就夠了" 實現簡單的配置中心 配置文件就在Spri ...
  • 接上篇博文—— "《詳解 繼承(上)—— 工具的抽象與分層》" 廢話不多說,進入正題: 本人在上篇“故弄玄虛”,用super();解決了問題,這是為什麼呢? 答曰:子類中所有的構造方法 預設 都會訪問父類中 空參數的構造方法 (拓展:由於這個原理,我們今後所做的“ 工具類 ”都必須要帶上無參構造) ...
  • 本篇博文講解的知識點比較實用,但是,相關知識點太多,所以本人將內容分為上下兩冊, 那麼,本人就不多廢話,直接進入主題進行講解了! 說到“繼承”,大家可能都會想到我們日常中對於這個詞的定義:將先人的 物品 或 意志 傳承給後人,而後人也可以“擇優繼承”,併在先人的基礎上產生 新的物品 或 新的意志。 ...
  • 1、格式 (數據1,數據2,數據3,...) 定義元組使用小括弧,且逗號隔開各個數據,數據可以是不同的數據類型。 元組和列表的區別:元組存儲的數據不能修改 2、定義的類型 單數據元組和多數據元組 t1 = (1, 2) print(type(t1)) # tuple 多數據元組 t2 = (1,) ...
  • Title:ElasticSearch實戰系列四: ElasticSearch的聚合查詢基礎使用教程之度量(Metric)聚合 前言 在上上一篇中介紹了 "ElasticSearch實戰系列三: ElasticSearch的JAVA API使用教程" ,介紹了ElasticSearch Java A ...
  • [toc] 泛型: 首先,本人來介紹一下 什麼是泛型 : 泛型概述 : 是一種把類型明確的工作 推遲到創建對象 或者 調用方法的時候 才去 明確的特殊的類型 。 參數化類型 ,把類型當作參數一樣的傳遞。 通俗一點來講:泛型 是JAVA 中一種十分強大的機制,因為它能夠完成在 未知元素類型 的情況下對 ...
  • 在Java發展的里程碑上,有三個版本做出的改動,是革命性的 為什麼說是革命性的呢? 因為這三個版本所推出的有些新機制,在之後的Java框架開發、新類的產生等等中, 都被廣泛使用了。 那麼,這三個版本的JDK,都有哪些新特性呢? 現在,右轉哥就來帶你剖析這三個版本的JDK的新特性: [toc] 首先是 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...