亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

spring容器啟動(dòng)實(shí)現(xiàn)初始化某個(gè)方法(init)

 更新時(shí)間:2021年08月09日 15:12:07   作者:智_永無止境  
這篇文章主要介紹了spring容器啟動(dòng)實(shí)現(xiàn)初始化某個(gè)方法(init),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

spring容器啟動(dòng) 初始化某方法(init)

1、前言

很多時(shí)候,我們需要在項(xiàng)目啟動(dòng)的時(shí)候,就要完成某些方法的執(zhí)行。今天整理了一個(gè)簡(jiǎn)單的方法,使用spring容器中bean的屬性:init-method

2、代碼

/*
    初始化的類。這里不需要添加任何注解
*/
public class InitData {
    @Autowired
    private UserService userService;
    /*
        初始化方法
    */
    public void inits(){
        System.out.println("初始化方法執(zhí)行.....");
        List<User> userList = userService.queryAllUser();
        System.out.println(userList.toString());
    }
}

3、配置

<?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:context="http://www.springframework.org/schema/context" 
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        xsi:schemaLocation="http://www.springframework.org/schema/beans    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    
        http://www.springframework.org/schema/context    http://www.springframework.org/schema/context/spring-context-3.0.xsd 
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"
    default-lazy-init="true"><!-- 默認(rèn)懶加載(延遲加載):調(diào)用的時(shí)候才實(shí)例化   -->
    <!-- 啟動(dòng)注解掃描包,獲取bean -->
    <context:component-scan base-package="ws.spring.mybatis.service" />
    <!-- 引入數(shù)據(jù)源 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>
    <!-- 注入數(shù)據(jù)源 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="jdbcUrl" value="${jdbc.url}"></property>
        <property name="user" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>
    <!-- 容器啟動(dòng)后執(zhí)行:需要執(zhí)行初始化方法,所以必須直接實(shí)例化,取消懶加載-->
    <bean id="initData" class="ws.spring.mybatis.init.InitData" init-method="inits"  lazy-init="false" />
</beans>

5、結(jié)果

這里寫圖片描述

6、注意事項(xiàng)

  • 當(dāng)初始化方法中有依賴注入的時(shí)候,需要將加載注入的bean放在初始化bean之前。最好直接放在子容器中。因?yàn)楦溉萜飨扔谧尤萜鞒跏蓟?。否則依賴注入報(bào)錯(cuò)。
  • 取消初始化bean的懶加載,否則初始化方法無法執(zhí)行。
  • lazy-init 設(shè)置只對(duì)scop屬性為singleton的bean起作用

spring容器啟動(dòng)初始化的幾種方法

方法一

實(shí)現(xiàn)InitializingBean接口

InitializingBean接口為bean提供了初始化方法的方式,它只包括afterPropertiesSet方法,凡是繼承該接口的類,在初始化bean的時(shí)候都會(huì)執(zhí)行該方法。

xml中添加bean

不在xml中添加可以在Initializing類頭部添加注解@Service

<bean id="initializingBean" class="cn.base.core.init.Initializing" init-method="init"></bean>

Initializing.java

public class Initializing implements InitializingBean{ 
 private static final Logger logger = LoggerFactory.getLogger(Initializing.class); 
 // 方法一
 @Override
 public void afterPropertiesSet() throws Exception {
  logger.info(">>>>>>>> init start...");
 }
 
 public void init() {
  logger.info(">>>>>>>> 初始化...");
 }
}

啟動(dòng)項(xiàng)目日志如下:

Invoking afterPropertiesSet() on bean with name 'initializingBean'
>>>>>>>> init start...
Invoking init method 'init' on bean with name 'initializingBean'
>>>>>>>> 初始化...

方法二

使用@PostConstruct注解

@PostConstruct
public void initConstruct() {
 System.out.println("注解初始化...");
}

注意:此方法所在的類需要被掃描到,多種注解可以用,推薦使用@Service

執(zhí)行順序:方法二比方法一優(yōu)先執(zhí)行。

方法三

web.xml配置

<filter>  
     <filter-name>filterServlet</filter-name>  
     <filter-class>cn.base.web.interceptor.FilterServlet</filter-class>  
</filter>
<filter-mapping>
    <filter-name>filterServlet</filter-name>
   <url-pattern>/*</url-pattern>
   <dispatcher>REQUEST</dispatcher>
</filter-mapping>

FilterServlet.java

public class FilterServlet implements Filter { 
 @Override
 public void init(FilterConfig filterConfig) throws ServletException {
  System.out.println("FilterServlet 初始化");
 }
 
 @Override
 public void doFilter(ServletRequest request, ServletResponse response, FilterChain         
chain)
   throws IOException, ServletException {
  chain.doFilter(request, response);
 }
 
 @Override
 public void destroy() {  
 }
}

執(zhí)行順序:優(yōu)先級(jí)比上面兩個(gè)低。

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • SpringSecurity添加圖形驗(yàn)證碼認(rèn)證實(shí)現(xiàn)

    SpringSecurity添加圖形驗(yàn)證碼認(rèn)證實(shí)現(xiàn)

    本文主要介紹了SpringSecurity添加圖形驗(yàn)證碼認(rèn)證實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-08-08
  • java接口性能優(yōu)化技巧

    java接口性能優(yōu)化技巧

    這篇文章主要為大家介紹了java接口性能優(yōu)化技巧示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-07-07
  • Java集合排序規(guī)則接口Comparator用法解析

    Java集合排序規(guī)則接口Comparator用法解析

    這篇文章主要介紹了Java集合排序規(guī)則接口Comparator用法解析,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-09-09
  • Mybatis-plus 查詢條件為空不生效問題及解決

    Mybatis-plus 查詢條件為空不生效問題及解決

    這篇文章主要介紹了Mybatis-plus 查詢條件為空不生效問題及解決,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-01-01
  • JVM的垃圾回收機(jī)制真是通俗易懂

    JVM的垃圾回收機(jī)制真是通俗易懂

    這篇文章主要為大家詳細(xì)介紹了JVM的垃圾回收機(jī)制,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下,希望能夠給你帶來幫助
    2022-02-02
  • IntelliJ IDEA之配置JDK的4種方式(小結(jié))

    IntelliJ IDEA之配置JDK的4種方式(小結(jié))

    這篇文章主要介紹了IntelliJ IDEA之配置JDK的4種方式(小結(jié)),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-10-10
  • 輕松掌握J(rèn)ava單例模式

    輕松掌握J(rèn)ava單例模式

    這篇文章主要幫助大家輕松掌握J(rèn)ava單例模式 ,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-10-10
  • Mybatis之a(chǎn)ssociation和collection用法

    Mybatis之a(chǎn)ssociation和collection用法

    這篇文章主要介紹了Mybatis之a(chǎn)ssociation和collection用法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-02-02
  • springboot數(shù)據(jù)訪問和數(shù)據(jù)視圖的使用方式詳解

    springboot數(shù)據(jù)訪問和數(shù)據(jù)視圖的使用方式詳解

    這篇文章主要為大家介紹了springboot數(shù)據(jù)訪問和數(shù)據(jù)視圖的使用方式詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-06-06
  • SSH框架網(wǎng)上商城項(xiàng)目第28戰(zhàn)之使用Ajax技術(shù)局部更新商品數(shù)量和總價(jià)

    SSH框架網(wǎng)上商城項(xiàng)目第28戰(zhàn)之使用Ajax技術(shù)局部更新商品數(shù)量和總價(jià)

    這篇文章主要為大家詳細(xì)介紹了SSH框架網(wǎng)上商城項(xiàng)目第28戰(zhàn)之使用Ajax技術(shù)局部更新商品數(shù)量和總價(jià),感興趣的小伙伴們可以參考一下
    2016-06-06

最新評(píng)論