Recommended framework for java web services [closed] - java

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
This question was asked about 18 months back. Wanted to see if the community still agrees with CXF as a good choice for the question posted.
Looking for a good framework, if we go the schema-first route.
Thank you.

I use JAX-WS:
https://jax-ws.dev.java.net/
Based on annotations, easy to get started. Heaps od examples on the web.

I'm using Axis2 1.5.1 and it sucks. The documentation is very very poor. I feel almost on my own when have to implement jms transport with signing and encryption. A simple client always requires an Axis2 repository in file system.

Nowadays I would recommend JAX-WS as Leonardo suggested. It complies with the current specifications.
I used CXF in the past and never had any issues with it (to the extent of my needs). Of course one can argue if Metro (https://jax-ws.dev.java.net/) framework is superior over CXF. In my opinion you should try both and decide which you feel more comfortable with.

Consider to use REST with JAX-RS if you have the choice.

Related

Akka and Apache Camel advantages over Apache Service Mix and others ESB [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
In terms of high performance, scalability and massive concurrency for systems integration through xml data exchange, would worthwhile develop a solution with few channels and simple using Akka and Camel instead to adopt an mamut ESB solution?
I Know that apache service mix uses camel behind scenes for engine message mediation between services. But and about of performance that akka can provide
Besides not seeing a real question, I can tell you that there are several non-mamut ESB solutions available, especially in the open source environment.
It depends on what you wanna do. If you need for example monitoring and administration for your "channels", why not use a lightweight ESB (ServiceMix, Fuse, Talend, WSO2, Fiorano, ...) instead of implementing it by yourself?
Maybe you should tell us a little bit more about your problem - to discuss if a "real" ESB or Camel + Akka is the better choice...

What are the most important Java libraries? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I've read this discussion on Stackoverflow, but it's been over two years since it was asked. I am a beginning Java programmer and have little knowledge of appreciated and widely-used libraries for this platform.
Of course I do use some libraries (JUnit, parts of Spring), but I'd love to have a list of libraries, that every Java developer should know (i.e. Hibernate, Velocity..?). I am interested in every field of Java applications.
What would you recommend for me (or any other beginner) to check out?
Here is a good list of Java libraries you should know about.
https://java-source.net/
Every beginner should spend more time learning core java. There are no all-around libraries. Most if not all libraries are problem/domain specific...
My oppinion...
Apache commons has many libraries (like copying a stream to another). In the Java EE web application area the Spring framework provided independent utility libraries (like file upload servlet filter and for dependency injection), that meanwhile becomes less important because of the simplifications in Java EE.

Comparison of Java web framework usage, especially in enterprise projects [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I'm trying to get a sense of what are the most commonly-used Java web frameworks, with a focus on large, enterprisey projects. I'm interested in which one is most favored by companies/enterprises (which may not be the same as the one most favored by developers or the open source community I guess). I'd also like to be able to cite specific projects used by each framework, preferably big-ticket or well-known ones.
Anyone have any idea about this stuff or can point me in the right direction?
Thanks!
Depending on what you would like to do.. I would recommand to be familliar with:
- Hibernate
- Spring
- Apache Camel (high value)
- Apache ServiceMix (esb side)
And a good knowledge about servlet (EJB, ...) and JSPs.
I'm sure other will come with better ideas but that's what we are looking for when browsing the dev's CV.
Last thing: Do what you love to do, that'll be the best framework ;)

What's the best RESTful JavaScript API? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I have to do a simple RESTful client for a webservice written in Java.
I'm thinking to use a simple HTML/JavaScript implementation... but, i don't know what's the best API for this...
I've already tried jQuery, but I think i'm doing something wrong, because it don't work well...
Someone know a CRUD tutorial with jQuery, or other JS API?
Thanks a lot!
cheers!
It would be helpful to know why jQuery doesn't work well for you. The Ajax implementation should cover everything you need to talk to a RESTful webservice. But here are two frameworks that implement an improved RESTful model wrappers:
Backbone.js Model
JavaScriptMVC $.Model
There are probably more and which one is the best will depend entirely on your needs.
Could it be that the API you are calling and your client code are on different domains? If so JSONP is an option (if the API supports it).

Bridges between Java and .NET [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm interested in technologies(solutions) that permits Java and .NET interoperate. I have tried the following and it works but I would like to know if there are other solutions:
Sockets
Web Services (Metro)
CORBA (IIOP.NET)
Messaging (QPid)
IKVM
Does anyone know other technologies(solutions) that enable Java and .NET interoperate or best practices for Java and .NET interoperability?
We use Apache ActiveMQ
I've used j-Integra's stuff before on a few projects that served me well
I have been working with JNBridge tools for in-process one-way JAVA Swing UI calling .NET 4.0 back end.
The whole thing performs well but does require discipline in its management. A license fee is required, so is really only a good choice when the 2 languages have to be used together.
Check out JNBridge.
I haven't used it, but I have heard this works: http://jnbridge.com/

Categories

Resources