Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6086161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:43:13+00:00 2026-05-23T11:43:13+00:00

I just started working with spring and set up a simple spring project in

  • 0

I just started working with spring and set up a simple spring project in NetBeans. By default it doesn’t seem to use annotations.

In one of my controllers I’d like to handle different clicks on the form. I have looked at some solutions and it seems like adding a parameter check could work:

@RequestMapping(params = "someAction")
public ModelAndView doSomeAction() {

However it looks like all of the requests are going to:

public class SetupController implements Controller {
@Override
public org.springframework.web.servlet.ModelAndView handleRequest(
        HttpServletRequest hsr, HttpServletResponse hsr1) throws Exception {

Is there a way I can achieve the same effect without RequestMapping annotation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T11:43:14+00:00Added an answer on May 23, 2026 at 11:43 am

    It seams that you mixed the old (implements Controller) style with the new one annotation based style.

    You can’t (or at least should not) mix them, at least not for one class.

    If you use Spring 3.x then I strongly recommend to use the Annotation based style.

    @Controller
    @RequestMapping("/whatever")
    public class DemoController() {
    
       @RequestMapping(params="x");
       public ModelAndView doX() {
       }
    
       @RequestMapping(params="y");
       public ModelAndView doY() {
       }
    }
    

    To enable the Annotation Based style, you need at least this configuration settings:

    <!-- Turns on support for mapping requests to Spring MVC @Controller methods 
      Also registers default Formatters and Validators for use across all
          @Controllers -->
    <mvc:annotation-driven conversion-service="applicationConversionService" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just started working on my first Visual Studio project, and I imported all
I just started working using Google Maps API yesterday, and trying to set up
I've just started working on an ASP.NET project which I hope to open source
I just started working with SSRS, so this question might seem silly. Anyway, for
I just started working on a project that will run on google app engine
I just started working with rails, and I know it must be something simple
I am new to spring MVC,and just started working on it.I would like to
I am currently working on a C# project. I have just started needing to
I am just getting started with Spring AOP in my project and am having
Just started working with .NET and MVC(1). I'm having a problem wherein in my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.