作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果不是如下,如何在HTtpMessageHandler
中设置目标目录?
@Bean
@ServiceActivator(inputChannel = "ftpChannel")
public MessageHandler handler() {
FtpMessageHandler handler = new FtpMessageHandler(ftpSessionFactory());
handler.setRemoteDirectoryExpressionString("/my/remote/dir");
return handler;
}
结果:
Caused by: org.springframework.expression.spel.SpelParseException: Expression [/my/remote/ftp] @0: EL1070E: Problem parsing left operand
最佳答案
将表达式设置为文字值时,必须将文字包含在单引号内。
handler.setRemoteDirectoryExpressionString("'/my/remote/dir'");
它是一个表达式,因此您可以动态确定目标目录。
关于java - 如何在FtpMessageHandler中设置目标目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56647808/
我是一名优秀的程序员,十分优秀!