Dhruv
Dhruv

Reputation: 1728

Creating REST service using apache CXF in spring MVC

Hello guys I am new to Spring MVC and i want to create a REST web service using Apache CXF...I have seen many tutorials online but I am so much confused with the annotations and all..Is there a simple neat and clean tutorial to refer thanks

Upvotes: 2

Views: 1787

Answers (3)

Jonathan W
Jonathan W

Reputation: 3799

If your application is already using Spring MVC, I wouldn't try to create a web service with CXF. Just use the REST-style annotations that Spring MVC provides, and you'll get most (probably all) the way there. And it will integrate with other parts of your webapp which are using Spring a little more tightly.

Upvotes: 2

Prem
Prem

Reputation: 1684

The best tutorials for Spring MVC (Beginners), i recommend http://www.vaannila.com/.

Another good one is http://www.javacodegeeks.com.

Just go through the links. Start from Hello World and keep doing practice.

Enjoy Coding.....

Upvotes: 1

John Doe
John Doe

Reputation: 9764

Well, it's all right to be confused at first. You say there are many tutorials and you need one of them. Tutorials are great, but I'd recommend to look for books, not just for short descriptions. If you are new to Spring, try "Spring in Action" or any other, that would give you a basic understanding of what's going on in the tutorials.

Upvotes: 0

Related Questions