package com.baeldung.annotation.servletcomponentscan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.ServletComponentScan; import com.baeldung.autoconfiguration.MySQLAutoconfiguration; /** * using the following annotations are equivalent: *
@ServletComponentScan
* @ServletComponentScan(basePackages = "com.baeldung.annotation.servletcomponentscan.components")
* @ServletComponentScan(basePackageClasses = {AttrListener.class, HelloFilter.class, HelloServlet.class, EchoServlet.class})
*