14

I'm looking for a Java payment gateway library similar to the Rails active_merchant or the libraries available on many other platforms. I've been surprised that I've been unable to find one. I'd like something that supports the major gateways and providers, like Paypal, Google, Amazon, and some direct merchant account providers like Authorize.net.

Does such a thing exist in the open source world?

Adeel Ansari
  • 39,541
  • 12
  • 93
  • 133
Alex Neth
  • 3,326
  • 2
  • 26
  • 36
  • Let's move this question to the right place http://softwarerecs.stackexchange.com/ – Joel Handwell Apr 15 '16 at 15:05
  • 1
    https://github.com/tranxactive/J2PAY OR http://j2pay.org kindly have a review of this library, we support multiple gateways and our list are expanding day by day, you are warmly welcome to contribute with us aswell – Tousif Apr 18 '18 at 11:47

2 Answers2

3

Stripe has a Java library to accept credit cards without needing a merchant account: https://github.com/stripe/stripe-java

Check out the documentation and FAQ, and feel free to drop by our chatroom if you have more questions.

anurag
  • 1,499
  • 14
  • 15
  • 1
    Just signed up with Stripe and took it for a test spin. For what it's worth, I'll never use anything else ever again. –  Aug 03 '13 at 02:59
  • It's a closed-source saas with a simple client API. So it's not a payment gateway lib similar to omnipay or payum (from PHP) or active_merchant (from Ruby). – gaRex Jan 06 '16 at 23:57
  • 2
    check out J2pay https://github.com/tranxactive/J2PAY – cool cool Jan 16 '19 at 10:38
1

I found nice paypal library at sourceforge: http://sourceforge.net/projects/paypal-nvp/

pete
  • 31
  • 1