package
com.springexample;
import
org.springframework.context.ApplicationContext;
org.springframework.context.support.ClassPathXmlApplicationContext;
public
class
RunMyProgram {
static
void
main(String[] args) {
ApplicationContext context =
new
ClassPathXmlApplicationContext(
"beans.xml"
);
Student student = (Student) context.getBean(
"johnStudent"
System.out.println(student.getStudentNo());
System.out.println(student.getStudentName());
}
org.springframework.context.annotation.Bean;
org.springframework.context.annotation.Configuration;
@Configuration
JavaConfiguration {
@Bean
Student johnStudent(){
Student john =
Student();
john.setStudentNo(
1001
john.setStudentName(
"John Peter"
return
john;
<?
xml
version
=
"1.0"
encoding
"UTF-8"
?>
<
beans
xmlns
"http://www.springframework.org/schema/beans"
xmlns:xsi
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:context
"http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
context:component-scan
base-package
"com.springexample"
/>
</
>
Student {
private
int
studentNo;
String studentName;
getStudentNo() {
setStudentNo(
studentNo) {
this
.studentNo = studentNo;
String getStudentName() {
studentName;
setStudentName(String studentName) {
.studentName = studentName;
Do you want to delete a "" lesson. Warning! This delete will remove all it's sub lessons and contents.
Do you want to delete a "" sub lesson. Warning! This delete will remove all it's contents.
Do you want to delete content.
Do you want to remove selected book from favorite books.
Do you want to delete selected author from your authors list.