Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing PayPal in Java/Spring based application

I need to implement PayPal in Java/Spring/Spring-MVC based application.

It is quite hard to find any good tutorial on this issue. Is there any good information around that could help me, or show me a good direction?

Do you have any experience doing this? Any tips are welcome.

like image 816
Jarek Avatar asked Nov 23 '11 17:11

Jarek


3 Answers

There are two paypal plugins, actually.

Peter Delahunty wrote the paypal pro plugin but there is also the simpler Paypal plugin that just adds the Paypal Button.

On top of this, there is also another solution by paypal called Paypal Website Payment Pro, which is a hosted solution that doesn't require you to use all the PCI compliance stuff that the Paypal plugin requires. The tricky bit with this one is handling transactions and the IPN that gets sent by Paypal.

Do you know which solution you are using from Paypal?

like image 74
Tomas Lin Avatar answered Nov 20 '22 16:11

Tomas Lin


There is a grails plugin which may do what your looking for http://www.grails.org/plugin/paypal-pro. Sourced from similar question here

like image 24
Nathan Avatar answered Nov 20 '22 17:11

Nathan


This little project is made for encapsulating Paylpal NVP calls: http://sourceforge.net/projects/paypal-nvp/ Scarce documentation, but code is clear.

This tutorial has a messier code but it's explained: http://finker.wordpress.com/2010/08/24/paypal-adaptive-api-and-spring-3-rest-template-part-1/

like image 33
laffuste Avatar answered Nov 20 '22 17:11

laffuste