Merge pull request #8794 from rdevarakonda/BAEL-3324-Fix-Tests

BAEL-3324 | Fix broken integration tests
This commit is contained in:
Eric Martin 2020-02-29 19:41:16 -06:00 committed by GitHub
commit 754df49a31
4 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ import java.util.List;
*/ */
@Configuration @Configuration
@EnableWebMvc @EnableWebMvc
@ComponentScan({ "com.baeldung.web", "com.baeldung.requestmapping" }) @ComponentScan({ "com.baeldung.web.controller.status", "com.baeldung.requestmapping" })
public class MvcConfig implements WebMvcConfigurer { public class MvcConfig implements WebMvcConfigurer {
public MvcConfig() { public MvcConfig() {

View File

@ -1,4 +1,4 @@
package com.baeldung.web.controller; package com.baeldung.web.controller.customer;
import com.baeldung.model.Customer; import com.baeldung.model.Customer;
import com.baeldung.service.CustomerService; import com.baeldung.service.CustomerService;

View File

@ -1,4 +1,4 @@
package com.baeldung.web.controller; package com.baeldung.web.controller.customer;
import com.baeldung.model.Customer; import com.baeldung.model.Customer;
import com.baeldung.service.CustomerService; import com.baeldung.service.CustomerService;

View File

@ -1,4 +1,4 @@
package com.baeldung.web.controller; package com.baeldung.web.controller.customer;
import com.baeldung.model.Customer; import com.baeldung.model.Customer;
import com.baeldung.service.CustomerService; import com.baeldung.service.CustomerService;