[JAVA-961] Standardize packages in spring-security-modules: spring-security-rest-basic-auth (finalized)

This commit is contained in:
dupirefr 2020-03-19 21:43:28 +01:00
parent 15ead38004
commit dee9427fb7
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("org.baeldung.client")
@ComponentScan("com.baeldung.client")
public class ClientConfig {
public ClientConfig() {

View File

@ -6,7 +6,7 @@ import org.springframework.context.annotation.ImportResource;
@Configuration
@ImportResource({ "classpath:webSecurityConfig.xml" })
@ComponentScan("org.baeldung.security")
@ComponentScan("com.baeldung.security")
public class SecSecurityConfig {
public SecSecurityConfig() {

View File

@ -11,7 +11,7 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
@EnableWebMvc
@ComponentScan("org.baeldung.web")
@ComponentScan("com.baeldung.web")
public class WebConfig implements WebMvcConfigurer {
public WebConfig() {

View File

@ -12,7 +12,7 @@
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>org.baeldung.spring</param-value>
<param-value>com.baeldung.spring</param-value>
</context-param>
<listener>