Spring源码分析-IOC之InputStreamSource

InputStreamSource接口方法:

public interface InputStreamSource {

	//定位并打开资源,返回资源对应的输入流。
    //每次调用都会返回新的输入流,调用者在使用完毕后必须关闭该资源。 
	InputStream getInputStream() throws IOException;

}

猜你喜欢

转载自blog.csdn.net/cgsyck/article/details/89109933