Webcam Chat QuickBooks Advice international calling cards international phone cards
JavaBeat Java Books Certifications Certifications Kits Articles Tutorials Tips QNA Book Store Interview Questions SCJP 1.5 SCJP 1.6 SCWCD 5.0 SCBCD 5.0 SCEA SCJA Feeds

Spring IoC in properties file

Topic :
Feedback Request New QnA Print Email

//File: beans.properties
# The View
view.class=StandardOutView
view.model(ref)=model

# The Model
model.class=HelloWorldModel

///////////////////////////////////////////////////////////////////////////////////////

public interface View {

public void render();

public void setModel(Model m);
public Model getModel();
}


///////////////////////////////////////////////////////////////////////////////////////

public interface Model {

public String getMessage();
}

///////////////////////////////////////////////////////////////////////////////////////

public class StandardOutView implements View {

private Model model = null;

public void render() {
if (model == null) {
throw new RuntimeException(
"You must set the property model of class:"
+ StandardOutView.class.getName());
}

System.out.println(model.getMessage());
}

public void setModel(Model m) {
this.model = m;
}

public Model getModel() {
return this.model;
}

}

///////////////////////////////////////////////////////////////////////////////////////


public class HelloWorldModel implements Model {

public String getMessage() {

return "Hello World!";
}

}
///////////////////////////////////////////////////////////////////////////////////////

import java.io.FileInputStream;
import java.util.Properties;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.support.PropertiesBeanDefinitionReader;

public class HelloWorldSpring {

public static void main(String[] args) throws Exception {

// get the bean factory
BeanFactory factory = getBeanFactory();

View v = (View) factory.getBean("view");
Model mp = (Model) factory.getBean("model");

v.setModel(mp);
v.render();
}

private static BeanFactory getBeanFactory() throws Exception {
// get the bean factory
DefaultListableBeanFactory factory = new DefaultListableBeanFactory();

// create a definition reader
PropertiesBeanDefinitionReader rdr = new PropertiesBeanDefinitionReader(
factory);

// load the configuration options
Properties props = new Properties();
props.load(HelloWorldSpring.class.getResource("beans.properties").openStream());

rdr.registerBeanDefinitions(props);

return factory;
}
}

Topic :
Feedback Request New QnA Print Email

All api java java 6.0 java 7.0 jdbc jsp servlet ejb jndi jms ejb 3.0 j2ee jee 5.0 jee 6.0 jsf struts spring Hibernate ajax JBoss Seam netbeans eclipse ant xml maven dojo junit javafx j2me log4j ESB JBoss Apache Quartz scjp mysql oracle gwt openjpa jmx yui google-guice android JBoss scwcd 5.0 scjp 1.5 scjp 1.6 scja scbcd 5.0

JavaBeat Website (2004-2011), India
javabeat | advertise | about us | contact | useful resources
Copyright (2004 - 2011), JavaBeat


Technology Blogs
Technology blogs Technology Blogs
blog log