updated packages
This commit is contained in:
parent
ba8d468603
commit
85f4a100db
@ -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 {
|
||||
|
||||
@ -0,0 +1,4 @@
|
||||
package com.baeldung.springbootconfiguration;
|
||||
|
||||
public interface PersonService {
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
package com.baeldung.springbootconfiguration;
|
||||
|
||||
public class PersonServiceImpl implements PersonService {
|
||||
}
|
||||
@ -1,6 +0,0 @@
|
||||
package com.baeldung.springbootconfiguration.ServiceImpl;
|
||||
|
||||
import com.baeldung.springbootconfiguration.service.PersonService;
|
||||
|
||||
public class PersonServiceImpl implements PersonService {
|
||||
}
|
||||
@ -1,4 +0,0 @@
|
||||
package com.baeldung.springbootconfiguration.service;
|
||||
|
||||
public interface PersonService {
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user