• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Starting a new Java Project using Spring

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am going to start work on a new project which has to be done using spring MVC as the middle tire and front end as JSP .

Can any one advice me how to get start on this ?

To configure Spring what all i have to down load ?

To set a spring frame work what all the steps i have to take ?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You didn't say what you know so far. If you haven't learned Spring yet, "Spring in Action" and the spring online reference are good places to start. You'll need to learn Core Spring before starting with Spring MVC.

If you have learned Spring already, can you ask a more specific question about getting started?
 
allan peter
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have worked in spring before .

I need to develop a frame work using spring Tech.

1. How do I setup a development environment in Spring tech ?

2. What is folder structure I have to create for my project ?

3. Do i have to install spring or download any jar to set up my development environment ?

4. Do i setup my Dispatcher servlet ?

5. Do i have setup the view resolver ?

6.
 
Ranch Hand
Posts: 491
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What I did after reading here and there:

1. download STS ide from spring.
2. create a SRPING mvc template. The mvc app structure is done.
There you have the structure template.

3. Then armed with a little/lot of Spring MVC knowlegde, fill in the blank with code...
Then as usual, exceptions come up...
Then solve 1 question at a time.
 
allan peter
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is STS ide ?

Have you got any links for it ?
 
H Paul
Ranch Hand
Posts: 491
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Spring website.
 
Jeanne Boyarsky
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

allan peter wrote:What is STS ide ?

Have you got any links for it ?


Spring Source Tool Suite IDE is a number of plugins for Spring development pre-bundled into Eclipse. (It also comes with Grails plugins.) You don't need it for Spring development, but it makes things easier - like editing the Spring XML.
 
Jeanne Boyarsky
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

allan peter wrote:1. How do I setup a development environment in Spring tech ?


You download the Spring jars or setup your Maven project and start. If you've worked in Spring before, you can craft a more specific problem that you are having.

allan peter wrote:2. What is folder structure I have to create for my project ?


If you are using Maven, the standard folder structure. Otherwise, whatever you want.

allan peter wrote:3. Do i have to install spring or download any jar to set up my development environment ?


Yes, you need the Spring jars.

Before we move on, have you read this page? It answers lots of questions (like the fact that you need a DispatcherServlet).
reply
    Bookmark Topic Watch Topic
  • New Topic