Web services start the use of spring to run Applicationlistener on its own initiative

Source: Internet
Author: User

We know. In general, a project needs to load or run some special tasks to initialize the system when it starts. The usual practice is to initialize with a servlet. However, the servlet cannot be injected directly with the spring bean, and it needs to be configured in the Web. Xml. More trouble. Today, we introduce the method of starting initialization using spring. In fact very easy, just two steps to be able to.

    1. Implement the Applicationlistener interface:
publicclass Init implements ApplicationListener<ContextRefreshedEvent>{    @Override    publicvoid onApplicationEvent(ContextRefreshedEvent event) {        ifnull){//root application context 没有parent            //TODO 这里写下将要初始化的内容        }    }}
    1. Configuring the Bean in spring applicationcontex.xml
class="com.xx.xxx.Init"/>

This is when the service starts. will be loaded and run on their own initiative.

Web services start the use of spring to run Applicationlistener on its own initiative

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.