main方法中调用spring注入bean

public static void main(String[] args) {
  // TODO Auto-generated method stub
  ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");//此文件放在SRC目录下

  Hello h=(Hello)context.getBean("Hello");
  h.test1();//Hello类中文法
 }

 

=========================================================================>

 

Hello类:

 

private JdbcTemplate  jdbcTemplate ;
 private AAA aaa;
 private DataSourceTransactionManager transactionManager;

 

public DataSourceTransactionManager getTransactionManager() {
  return transactionManager;
 }

 

 public void setTransactionManager(
   DataSourceTransactionManager transactionManager) {
  this.transactionManager = transactionManager;
 }

 

public JdbcTemplate getJdbcTemplate() {
  return jdbcTemplate;
 }

 

 public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
  this.jdbcTemplate = jdbcTemplate;
 }

 

public void test1(){
  System.out.println(111);
 }

 

=================================================================>

spring配置文件:

applicationContext.xml

 


 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-3.0.xsd">


   class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  
   oracle.jdbc.driver.OracleDriver
  

  
   jdbc:oracle:thin:@192.168.0.203:1521:orcl
  

  
   YQZL
  

  
   YQZL
  

 

 

   class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  
   
  

 

 

 

  class="org.springframework.jdbc.core.JdbcTemplate">
  

 

 


  
   
  

  
   
  

 

你可能感兴趣的:(spring应用)