1. 程式人生 > 其它 >簡單使用kettle轉換經銷商資訊表(excel資料、帆軟報表執行、要注意的問題)

簡單使用kettle轉換經銷商資訊表(excel資料、帆軟報表執行、要注意的問題)

0.開發環境

開發工具:

  • STS(Spring Tool Suite)

jar包:

  • commons-logging-1.1.3.jar
  • spring-beans-4.0.0.RELEASE.jar
  • spring-context-4.0.0.RELEASE.jar
  • spring-core-4.0.0.RELEASE.jar
  • spring-expression-4.0.0.RELEASE.jar
bean的作用域
  • Singleton 單例
  • Prototype 多例
  • Request 在一次請求中有效
  • Session 在一此會話中有效
單例
測試bean: Student.java
package com.moon.ioc.scope;

public class Student {
	private Integer sid;
	private String sname;
	public Integer getSid() {
		return sid;
	}
	public void setSid(Integer sid) {
		this.sid = sid;
	}
	public String getSname() {
		return sname;
	}
	public void setSname(String sname) {
		this.sname = sname;
	}
	public Student() {
		super();
		// TODO Auto-generated constructor stub
	}
	/*@Override
	public String toString() {
		return "Student [sid=" + sid + ", sname=" + sname + "]";
	}*/
	
}

配置檔案scope.xml,bean的屬性scope設定為singleton


<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	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.xsd">

	<bean id="student" class="com.moon.ioc.scope.Student" scope="singleton">
		<property name="sid" value="1001"></property>
		<property name="sname" value="王朝" ></property>
	</bean>
</beans>

測試程式碼:Test.java

package com.moon.ioc.scope;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Test {
	public static void main(String[] args) {
		ApplicationContext ac = new ClassPathXmlApplicationContext("scope.xml");
		Student student1 = ac.getBean("student", Student.class);
		Student student2 = ac.getBean("student", Student.class);
		System.out.println(student1);
		System.out.println(student2);
	}
}

執行結果:

建立兩個Student例項,記憶體地址是一樣的

資訊: Loading XML bean definitions from class path resource [scope.xml]
com.moon.ioc.scope.Student@402a079c
com.moon.ioc.scope.Student@402a079c