领先一步
VMware提供培训和认证,以加快您的进度。
了解更多方法有很多。如今许多应用程序依赖于消息传递(AMQP、JMS)来弥合不同系统和数据之间的差距。其他应用程序依赖于 RPC(通常是 Web 服务或 REST)。但是,对于许多应用程序来说,文件传输仍然是一种非常普遍的方式!支持文件传输的常见方法有很多,但三种最常见的方法是使用共享挂载点或文件夹、使用 FTP 服务器以及——对于更安全的交换——使用 SSH(或 SFTP)。众所周知,Spring 一直以来都为消息传递(JMS、AMQP)和 RPC 提供一流的支持(远程选项太多无法列举!),但许多人可能会对Spring Integration 项目中众多强大的文件传输选项感到惊讶。在这篇文章中,我将基于即将推出的 Spring Integration 2.0 框架中的一些令人兴奋的支持进行构建,该框架允许您在到达新文件时连接到事件,并将文件发送到远程端点,例如 FTP 或 SFTP 服务器或共享挂载点。
我们将使用一对熟悉的 Java 类——一个用于生成出站数据,另一个用于接收入站数据,无论是用于 SFTP、FTP 还是普通文件系统都无关紧要。所有适配器都将java.io.File
对象作为其入站有效负载传递,我们可以将 File、String 或byte[]
发送到远程系统。首先,让我们看看我们的标准客户端。在 Spring Integration 中,根据入站消息执行逻辑的类称为“服务激活器”。您只需配置一个<service-activator>
元素并告诉它要使用哪个 bean 来处理Message
。它将遵循一些不同的启发式方法来帮助您确定要调度哪个方法来处理 Message。在这里,我们只是明确地对其进行注释。因此,以下是我们将在整篇文章中使用的客户端代码
import org.springframework.integration.annotation.*;
import org.springframework.stereotype.Component;
import java.io.File;
import java.util.Map;
@Component
public class InboundFileProcessor {
@ServiceActivator
public void onNewFileArrival(
@Headers Map<String, Object> headers,
@Payload File file) {
System.out.printf("A new file has arrived deposited into " +
"the accounting folder at the absolute " +
"path %s \n", file.getAbsolutePath());
System.out.println("The headers are:");
for (String k : headers.keySet())
System.out.println(String.format("%s=%s", k, headers.get(k)));
}
}
此外,这是我们将用于合成最终存储在文件系统中的文件的代码
import org.springframework.integration.annotation.Header;
import org.springframework.integration.aop.Publisher;
import org.springframework.integration.file.FileHeaders;
import org.springframework.stereotype.Component;
@Component
public class OutboundFileProducer {
@Publisher(channel = "outboundFiles")
public String writeReportToDisk (
@Header("customerId") long customerId,
@Header(FileHeaders.FILENAME) String fileName ) {
return String.format("this is a message tailor made for customer # %s", customerId);
}
}
最后一个例子是我在 Spring Integration 甚至 Spring 中最喜欢的功能之一:接口透明性。OutboundFileProducer
类定义了一个用@Publisher
注解注释的方法。@Publisher
注解告诉 Spring Integration 将此方法调用的返回值转发到一个通道(这里我们通过注解命名它——outboundFiles
)。这与直接注入org.springframework.integration.MessageChannel
实例并在其上直接发送Message
相同。不同的是,现在这一切都隐藏在一个简洁的 POJO 后面!任何人都可以根据自己的意愿注入此 bean——这将是我们的秘密,当他们调用该方法时,返回值将被写入某个地方的File
:-) 要激活此功能,我们在 Spring 上下文中安装一个 SpringBeanPostProcessor
。bean 后处理器机制允许您轻松扫描 Spring 上下文中的 bean,并在适当的情况下增强其定义。在这种情况下,我们正在增强用@Publisher
注释的 bean。安装BeanPostProcessor
就像实例化它一样简单
<beans:bean class="org.springframework.integration.aop.PublisherAnnotationBeanPostProcessor"/>
现在,我可以创建一个注入此 bean 的客户端(或简单地从上下文中访问它),并像使用任何其他服务一样使用它
@Autowired
private OutboundFileProducer outboundFileProducer ;
// ...
outboundFileProducer.writeReportToDisk(1L, "1.txt") ;
最后,在我的所有 Spring 上下文中,我将打开<context:component-scan ... />
以让 Java 代码执行大部分工作并处理业务逻辑。我使用 XML 的地方仅在于描述全局集成解决方案的流程和配置。
在这里,Spring Integration 提供了很大的帮助——使您免于所有目录轮询代码,并使您可以编写对您重要的逻辑。如果您以前使用过 Spring Integration,那么您就会知道,从外部系统接收事件就像插入适配器然后让适配器告诉您何时值得做出反应一样简单。设置很简单:监控一个文件的文件夹以查找新文件,当一个新文件到达并(可选)匹配某些条件时,Spring Integration 将转发一个有效负载为java.io.File
文件的引用的Message
。
您可以为此目的使用file:inbound-channel-adapter
。适配器以固定的间隔(由poller
元素配置)监控目录,然后在检测到新文件时发布Message
。让我们看看如何在 Spring Integration 中配置它
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans ... xmlns:file="http://www.springframework.org/schema/integration/file" >
<context:component-scan base-package="org.springframework.integration.examples.filetransfer.core"/>
<file:inbound-channel-adapter channel="inboundFiles"
auto-create-directory="true"
filename-pattern=".*?csv"
directory="#{systemProperties['user.home']}/accounting">
<poller fixed-rate="10000"/>
</file:inbound-channel-adapter>
<channel id="inboundFiles"/>
<service-activator input-channel="inboundFiles" ref="inboundFileProcessor"/>
</beans:beans>
我认为这些选项非常不言自明。filename-pattern
是一个正则表达式,它将针对目录中的每个文件名进行评估。如果文件名与正则表达式匹配,则对其进行处理。适配器标签内的 poller 元素告诉适配器每 10,000 毫秒或 10 秒重新检查一次目录。directory 属性允许您指定要监控的目录,当然,channel 描述了当适配器找到某些内容时要转发消息的命名通道。在此示例中,与所有后续示例一样,我们将使其将消息转发到连接到<service-activator>
元素的命名通道。服务激活器只是您提供的 Java 代码,Spring Integration 将在新消息到达时调用它。在那里,您可以执行任何您想做的事情。
写入文件系统挂载点是另一回事;它更容易!
<?xml version="1.0" encoding="UTF-8"?> <beans:beans ... xmlns:file="http://www.springframework.org/schema/integration/file" > <context:component-scan base-package="org.springframework.integration.examples.filetransfer.core"/> <beans:bean class="org.springframework.integration.aop.PublisherAnnotationBeanPostProcessor"/> <channel id="outboundFiles"/> <file:outbound-channel-adapter channel="outboundFiles" auto-create-directory="true" directory="#{systemProperties['user.home']}/Desktop/sales"/> </beans:beans>
在此示例中,我们描述了一个命名通道和一个出站适配器。回想一下,出站通道是从我们之前创建的 Publisher 类中引用的。在所有示例中,当您调用writeReportToDisk
方法时,它将把一个 Message 放到通道(outboundFiles
)上,这些消息将一直传播到它们到达出站适配器为止。当您调用writeReportToDisk
方法时,返回值(一个 String)将用作Message
的有效负载,并且用@Header
元素注释的两个方法参数将作为标头添加到Message
中。键为FileHeaders.FILENAME
的@Header
用于告诉出站适配器在配置的目录中写入时要使用什么文件名。如果我们没有指定它,它会为我们基于UUID
合成一个。很巧妙,对吧?
让我们看看如何配置 Spring Integration 以从远程 FTP 服务器接收新文件。
<?xml version="1.0" encoding="UTF-8"?> <beans ... xmlns:ftp="http://www.springframework.org/schema/integration/ftp"> <context:component-scan base-package="org.springframework.integration.examples.filetransfer.core"/> <context:property-placeholder location="file://${user.home}/Desktop/ftp.properties" ignore-unresolvable="true"/> <ftp:inbound-channel-adapter remote-directory="${ftp.remotedir}" channel="ftpIn" auto-create-directories="true" host="${ftp.host}" auto-delete-remote-files-on-sync="false" username="${ftp.username}" password="${ftp.password}" port="2222" client-mode="passive-local-data-connection-mode" filename-pattern=".*?jpg" local-working-directory="#{systemProperties['user.home']}/received_ftp_files" > <int:poller fixed-rate="10000"/> </ftp:inbound-channel-adapter> <int:channel id="ftpIn"/> <int:service-activator input-channel="ftpIn" ref="inboundFileProcessor"/> </beans>
您可以看到有很多选项!它们中的大多数只是可选的——但这很好,因为知道它们的存在。此适配器将下载与指定的filename-pattern
匹配的文件,然后将其作为带有java.io.File
作为有效负载的Message
传递,就像之前一样。这就是为什么我们能够简单地重用之前的inboundFileProcessor
bean。如果您想更好地控制下载的内容,请考虑使用filename-pattern
指定掩码。请注意,这里有相当多的控制表面,包括对连接模式的控制以及在交付文件时是否应删除源文件。
出站适配器看起来与我们为文件支持配置的出站适配器非常相似。执行此操作时,它将编组进入它的有效负载的内容,然后将这些内容存储在 FTP 服务器上。目前,它预先支持编组String
、byte[]
和java.io.File
对象。
<?xml version="1.0" encoding="UTF-8"?> <beans ... xmlns:ftp="http://www.springframework.org/schema/integration/ftp"> <context:component-scan base-package="org.springframework.integration.examples.filetransfer.core"/> <context:property-placeholder location="file://${user.home}/Desktop/ftp.properties" ignore-unresolvable="true"/> <int:channel id="outboundFiles"/> <ftp:outbound-channel-adapter remote-directory="${ftp.remotedir}" channel="outboundFiles" host="${ftp.host}" username="${ftp.username}" password="${ftp.password}" port="2222" client-mode="passive-local-data-connection-mode" /> </beans>
与出站文件适配器一样,我们使用OutboundFileProducer
类生成要存储的内容,因此无需对此进行审查。剩下的只是通道和适配器本身的配置,它规定了您期望看到的所有内容:服务器配置和有效负载存放的远程目录。
继续……
要开始使用入站适配器,只需复制和粘贴FTP适配器,将所有FTP出现的地方重命名为SFTP,根据需要更改相关的配置值(端口、主机……),删除客户端模式选项,然后就完成了!当然还有其他选项——许多其他选项允许您限定身份验证机制;例如公钥或用户名。这是一个熟悉的示例
<?xml version="1.0" encoding="UTF-8"?> <beans ... xmlns:sftp="http://www.springframework.org/schema/integration/sftp"> <context:component-scan base-package="org.springframework.integration.examples.filetransfer.core"/> <context:property-placeholder location="file://${user.home}/Desktop/sftp.properties" ignore-unresolvable="true"/> <sftp:inbound-channel-adapter remote-directory="${sftp.remotedir}" channel="sftpIn" auto-create-directories="true" host="${sftp.host}" auto-delete-remote-files-on-sync="false" username="${sftp.username}" password="${sftp.password}" filename-pattern=".*?jpg" local-working-directory="#{systemProperties['user.home']}/received_sftp_files" > <int:poller fixed-rate="10000"/> </sftp:inbound-channel-adapter> <int:channel id="sftpIn"/> <int:service-activator input-channel="sftpIn" ref="inboundFileProcessor"/> </beans>
很方便,对吧?规则与之前的示例相同:您的客户端代码将交付一个java.io.File
实例,您可以根据需要对其进行处理。SFTP出站适配器完善了该集合。
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:sftp="http://www.springframework.org/schema/integration/sftp"> <context:component-scan base-package="org.springframework.integration.examples.filetransfer.core"/> <context:property-placeholder location="file://${user.home}/Desktop/sftp.properties" ignore-unresolvable="true"/> <int:channel id="outboundFiles"/> <sftp:outbound-channel-adapter remote-directory="${sftp.remotedir}" channel="outboundFiles" host="${sftp.host}" username="${sftp.username}" password="${sftp.password}" /> </beans>