11

I am trying to create a new Spring webservice project in Spring Tool Suite (STS). I checked this link
http://static.springsource.org/spring-ws/site/reference/html/tutorial.html
But this doesn't tell the steps very clearly.

Can anyone please share links to some useful resources that show step-by-step how to create a Spring WS project?

informatik01
  • 16,038
  • 10
  • 74
  • 104
user1732653
  • 627
  • 3
  • 8
  • 18

3 Answers3

7

Maybe these links will be helpful:

Step by step Spring-WS
Spring Web Services
Simple Spring Web Services
Basic Spring Web Service Tutorial From Contract to Security

informatik01
  • 16,038
  • 10
  • 74
  • 104
3

I found this small article on how to create a simple web service using Spring . This is in line with Spring tutorial. Perhaps this will help.

http://codereq.com/spring-web-service-part-1/

Thanks, Tejas.

Gaurav
  • 1,549
  • 2
  • 15
  • 31
3

Try this one. You can see in the screen-shot that the IDE has the famous Spring logo: http://briansjavablog.blogspot.com/2013/01/spring-web-services-tutorial.html

Michael M
  • 8,185
  • 2
  • 35
  • 51
  • 1
    Here's another which is a little more complete since it fills in a missing part about using mvn eclipse:eclipse to get the STS project file created so that the projects can be imported and worked with in STS: http://ankeetmaini.wordpress.com/2011/10/24/spring-web-services-2-made-easy/ Moreover, this one does not try to be fancy but is the simplest by far. I recommend this one 1st to get your feet wet then going to the site above for a detailed explanation of what's going on. – Michael M Jun 14 '13 at 06:34