updated packages
This commit is contained in:
-3
@@ -5,9 +5,6 @@ import org.springframework.boot.SpringBootConfiguration;
|
|||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.ComponentScan;
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
|
|
||||||
import com.baeldung.springbootconfiguration.ServiceImpl.PersonServiceImpl;
|
|
||||||
import com.baeldung.springbootconfiguration.service.PersonService;
|
|
||||||
|
|
||||||
@ComponentScan(basePackages = { "com.baeldung.*" })
|
@ComponentScan(basePackages = { "com.baeldung.*" })
|
||||||
@SpringBootConfiguration
|
@SpringBootConfiguration
|
||||||
public class Application {
|
public class Application {
|
||||||
|
|||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
package com.baeldung.springbootconfiguration;
|
||||||
|
|
||||||
|
public interface PersonService {
|
||||||
|
}
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
package com.baeldung.springbootconfiguration;
|
||||||
|
|
||||||
|
public class PersonServiceImpl implements PersonService {
|
||||||
|
}
|
||||||
-6
@@ -1,6 +0,0 @@
|
|||||||
package com.baeldung.springbootconfiguration.ServiceImpl;
|
|
||||||
|
|
||||||
import com.baeldung.springbootconfiguration.service.PersonService;
|
|
||||||
|
|
||||||
public class PersonServiceImpl implements PersonService {
|
|
||||||
}
|
|
||||||
-4
@@ -1,4 +0,0 @@
|
|||||||
package com.baeldung.springbootconfiguration.service;
|
|
||||||
|
|
||||||
public interface PersonService {
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user