BAEL-3324 | Fix broken integration tests

This commit is contained in:
ramprasad.devarakonda@gmail.com 2020-02-29 18:38:11 +00:00
parent 7cdbcaab3f
commit 5cedfb6479
4 changed files with 4 additions and 4 deletions

View File

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