remove code from evaluation article

This commit is contained in:
Ahmed Tawila 2017-06-30 04:06:35 +02:00
parent e76cf9ca26
commit c26eaf8696
2 changed files with 0 additions and 29 deletions

View File

@ -1,16 +0,0 @@
package com.baeldung;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.baeldung.configuration.ConstructorConfig;
import com.baeldung.model.Student;
public class ConstructorApp {
public static void main(String[] args) {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ConstructorConfig.class);
Student student = context.getBean(Student.class);
student.introduceMyself();
}
}

View File

@ -1,13 +0,0 @@
package com.baeldung;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import com.baeldung.configuration.SetterConfig;
import com.baeldung.model.Student;
public class SetterApp {
public static void main(String[] args) {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(SetterConfig.class);
Student student = context.getBean(Student.class);
student.introduceMyself();
}
}