Spring Boot highlights-startup and hot deployment, springboot

Source: Internet
Author: User

Spring Boot highlights-startup and hot deployment, springboot

Spring boot requires a startup class such

Package com. tianmaying; import org. springframework. boot. springApplication; import org. springframework. boot. autoconfigure. springBootApplication; import org. springframework. boot. web. servlet. servletComponentScan; @ SpringBootApplication @ ServletComponentScanpublic class BlogApplication {public static void main (String [] args) throws Exception {SpringApplication. run (BlogApplication. class, args );}}

The path of the Servlet class must beBlogApplicationThe sub-path of the package path can be scanned. Otherwise, the sub-path must passBasePackagesAttribute specifies the package of the Servlet class.

2. Let the Spring Boot project support hot deployment and add the following dependencies to the maven configuration file:

<Dependencies> <dependency> <groupId> org. springframework. boot </groupId> <artifactId> spring-boot-devtools </artifactId> </dependency> </dependencies>

 

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.