Mule ESB 3.9: How to Upload a File via Web Form and Download File

#ICYDK: This article will explain how to implement a File Upload via Web Form and Download File as the way of response from the HTTP POST request(Web Form).

pf-file-upload-download-service

MESSAGE-PROPERTIES (Get HTML Form Data): This will get the data from the HTML Form and assign to the Variable. Also Note that the #[message.inboundAttachments.file.dataSource.part.inputStream] is the name attribute from the HTML  . https://goo.gl/E59YuF #DataIntegration #ML

Spring Boot With Embedded PostgreSQL for DAO Integration/Unit Testing and Local Development

In this article, we will go through how to use embedded PostgreSQL in your local development environment plus how to use it for DAO integration/unit testing. If you have and are using PostgreSQL as your production database, your DAO testing should use the same database as your production one in order to have behavior consistency and the same environment precondition.

We will go through a sample Spring Boot application: https://goo.gl/eKhrcd #DataIntegration #ML