Merge pull request #5308 from eugenp/fix-boot-mvc

fix start of spring-boot-mvc
This commit is contained in:
Loredana Crusoveanu 2018-09-22 20:46:29 +03:00 committed by GitHub
commit 1ee74058a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.springbootmvc.nosuchbeandefinitionexception;
package com.baeldung.nosuchbeandefinitionexception;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

View File

@ -0,0 +1,5 @@
package com.baeldung.nosuchbeandefinitionexception;
public class BeanB {
}

View File

@ -1,4 +1,4 @@
package com.baeldung.springbootmvc.nosuchbeandefinitionexception;
package com.baeldung.nosuchbeandefinitionexception;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,5 +0,0 @@
package com.baeldung.springbootmvc.nosuchbeandefinitionexception;
public class BeanB {
}