Package org.example

Source Code of org.example.Aplicacao

package org.example;

import org.example.beans.Cliente;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.FileSystemResource;

public class Aplicacao {
  public static void main(String[] args) {
    XmlBeanFactory factory = new XmlBeanFactory(new FileSystemResource("spring/applicationContext.xml"));
   
    Sistema sistema = (Sistema)factory.getBean("Sistema");
   
    Cliente cliente4 = new Cliente();
   
    cliente4.setId(4);
    cliente4.setNome("Teste4");
   
    sistema.incluirCliente(cliente4);
   
    System.out.println(sistema.getClientes());
  }
}
TOP

Related Classes of org.example.Aplicacao

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.