We can use Eclipse for the Spring projects development, but SpringSource provides Spring Tool Suite (STS) that is an IDE based on Eclipse and comes with in-built VMware vFabric tc Server that is built on top of Apache Tomcat container and optimized for Spring based applications or you simple deploy on tomcat.
I would use STS for this tutorial and other future tutorials because
it makes a developers life easier by providing following features:
Support for creating skeletal Spring applications (MVC, Rest, Batch etc), good for starting...
Create gzip file in Java
GZIP is one of the favorite tool to compress file in Unix systems. We can compress a single file in GZIP format but we can’t compress and archive a directory using GZIP like ZIP files.
Here is a simple java program showing how can we compress a file to GZIP format and then decompress the GZIP file...
Submit Form using CURL in PHP
In PHP CURL POST tutorial, I have explained how to send HTTP GET / POST requests with PHP CURL library.
Below are the examples covered in this article.
1) Send HTTP GET Request with CURL
2) Send HTTP POST Requests with CURL
3) Send Random User-Agent in the Requests
4) Handle redirects (HTTP 301,302)
5) Handle Errors.
Read more: http://latest-tutorial.com/2014/07/19/submit-form-using-php-curl/#ixzz387AjgCv...