Great work! Appreciated! It's very helpful to all.
@sunnykhetan3 жыл бұрын
As gentle as an introduction could be.
@trapslime165 жыл бұрын
Can it be more complicated?
@klarusdetro15446 жыл бұрын
JoshIsTheBestTutorIloveThisVidsThanksPivotal👍
@richardlanglois51836 жыл бұрын
Great presentation Josh!
@alexsouza227 жыл бұрын
Any chance of having this source code?
@sergenikitin21348 жыл бұрын
so many new complicated abstractions (
@haridaniel7777 жыл бұрын
Is there any reason why the fluent builder is NOT TYPE SAFE? FE: Java 8 stream API also type safe even using lambdas...
@souravpati98326 жыл бұрын
why file example? the common use case is reading data from different databases right?
@df-hh7yd5 жыл бұрын
You don't need spring integration for that.
@milanfaizal7 жыл бұрын
How do we run an FTP Server on a machine so that I can send files from my machine to another over ftp
@df-hh7yd5 жыл бұрын
sudo apt-get install ftpserver
@RuskiTraktor8 жыл бұрын
Output to a local ftp server is so unnecesary for a introduction video. Should be done in as simple as possible manner, only to focus on 'Spring Integration' part.
@rmrfboy29514 жыл бұрын
so much for being "gentle". lol
@RuskiTraktor4 жыл бұрын
@@rmrfboy2951 nobody promised it will be gentle.. at least honest and providing feedback how to do it better next time:)
@privettoli8 жыл бұрын
File is an old API that should not be used. Use NIO instead
@qingcaish6 жыл бұрын
any problem with old FILE api ?
@aprofromuk8 жыл бұрын
josh's name in bengali for the slides - যশ লং :)
@darkknightleon98436 жыл бұрын
No good for Spring Boot 2.0.1.RELEASE. Can't find handleWithAdapter in IntegrationFlowDefinition anymore
@arkowski6 жыл бұрын
You can change handleWithAdapter(...) into handle(...) Here is AMQP example: OLD: handleWithAdapter(a -> a.amqp(amqpTemplate).exchangeName(this.asci)) NEW: handle(Amqp.outboundAdapter(amqp).routingKey(this.ascii)) You can do it the same with FTP from this tutorial.