bael-4197: move source code to spring-boot-testing-2 module
This commit is contained in:
-15
@@ -1,15 +0,0 @@
|
||||
package com.baeldung.xmlapplicationcontext;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.annotation.ImportResource;
|
||||
|
||||
@SpringBootApplication
|
||||
@ImportResource({"classpath*:application-context.xml"})
|
||||
public class XmlBeanApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(XmlBeanApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
-32
@@ -1,32 +0,0 @@
|
||||
package com.baeldung.xmlapplicationcontext.domain;
|
||||
|
||||
public class Employee {
|
||||
|
||||
private String name;
|
||||
private String role;
|
||||
|
||||
public Employee() {
|
||||
|
||||
}
|
||||
|
||||
public Employee(String name, String role) {
|
||||
this.name = name;
|
||||
this.role = role;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public String getRole() {
|
||||
return this.role;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setRole(String role) {
|
||||
this.role = role;
|
||||
}
|
||||
}
|
||||
-8
@@ -1,8 +0,0 @@
|
||||
package com.baeldung.xmlapplicationcontext.service;
|
||||
|
||||
import com.baeldung.xmlapplicationcontext.domain.Employee;
|
||||
|
||||
public interface EmployeeService {
|
||||
|
||||
Employee getEmployee();
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
package com.baeldung.xmlapplicationcontext.service;
|
||||
|
||||
import com.baeldung.xmlapplicationcontext.domain.Employee;
|
||||
|
||||
public class EmployeeServiceImpl implements EmployeeService {
|
||||
|
||||
@Override
|
||||
public Employee getEmployee() {
|
||||
return new Employee("Baeldung", "Admin");
|
||||
}
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
package com.baeldung.xmlapplicationcontext.service;
|
||||
|
||||
import com.baeldung.xmlapplicationcontext.domain.Employee;
|
||||
|
||||
public class EmployeeServiceTestImpl implements EmployeeService {
|
||||
|
||||
@Override
|
||||
public Employee getEmployee() {
|
||||
return new Employee("Baeldung-Test", "Admin");
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<bean id="employeeServiceImpl" class="com.baeldung.xmlapplicationcontext.service.EmployeeServiceImpl" />
|
||||
</beans>
|
||||
-8
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<bean id="employeeServiceImpl" class="com.baeldung.xmlapplicationcontext.service.EmployeeServiceImpl" />
|
||||
</beans>
|
||||
Reference in New Issue
Block a user