updated packages

This commit is contained in:
vatsalgosar
2019-07-26 10:05:46 +05:30
parent ba8d468603
commit 85f4a100db
5 changed files with 8 additions and 13 deletions

View File

@@ -5,9 +5,6 @@ import org.springframework.boot.SpringBootConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import com.baeldung.springbootconfiguration.ServiceImpl.PersonServiceImpl;
import com.baeldung.springbootconfiguration.service.PersonService;
@ComponentScan(basePackages = { "com.baeldung.*" })
@SpringBootConfiguration
public class Application {

View File

@@ -0,0 +1,4 @@
package com.baeldung.springbootconfiguration;
public interface PersonService {
}

View File

@@ -0,0 +1,4 @@
package com.baeldung.springbootconfiguration;
public class PersonServiceImpl implements PersonService {
}

View File

@@ -1,6 +0,0 @@
package com.baeldung.springbootconfiguration.ServiceImpl;
import com.baeldung.springbootconfiguration.service.PersonService;
public class PersonServiceImpl implements PersonService {
}

View File

@@ -1,4 +0,0 @@
package com.baeldung.springbootconfiguration.service;
public interface PersonService {
}