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

  • Home
  • SEARCH
  • 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 7946417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:08:46+00:00 2026-06-04T01:08:46+00:00

in a spring3 Controller I can create an action-method with several Parameters witch will

  • 0

in a spring3 Controller I can create an action-method with several Parameters witch will be set by spring

@RequestMapping(value="/updateTemplate")
public void doStuff(HttpServletRequest request, Locale locale) {
  assert request != null;
  assert locale != null;    
}

How can I teach Spring to fill my own defined Data-Types?

@RequestMapping(value="/updateTemplate")
public void doStuff(HttpServletRequest request, Locale locale, MyClass myClass) {
  assert myClass != null;
}
  • 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-06-04T01:08:49+00:00Added an answer on June 4, 2026 at 1:08 am

    you should use WebArgumentResolver

    public class MyClassWebArgumentResolver implements WebArgumentResolver {
        public Object resolveArgument(MethodParameter param, NativeWebRequest req) throws Exception {
            if (param.getParameterType().equals(MyClass.class)) {
                MyCLass obj = new MyClass();
                ....
                return obj;
            }
            return UNRESOLVED;
        }
    
    } 
    

    and register it to springmvc:

    <mvc:annotation-driven >
        <mvc:argument-resolvers>
           <bean class="com.xxx.MyClassWebArgumentResolver" />
        </mvc:argument-resolvers>
    </mvc:annotation-driven>
    

    then you can use it in your controller

    @RequestMapping(value="/updateTemplate")
    public void doStuff(HttpServletRequest request, Locale locale, MyClass myClass) {
        assert myClass != null;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Spring MVC and jquery autocomplete, my spring controller looks like this @RequestMapping(value
I currently have a Spring MVC controller that takes a MultipartFile @RequestMapping(method = RequestMethod.POST)
I have some kind of controller: @Controller public class DefaultController { @RequestMapping(value=/index.html, method=RequestMethod.GET) public
In some MVC frameworks you can call controller action from the view if you
I can create a secure, multi-tenant web app with Grails by : setup spring
I've a Spring (3.0) Controller with a method which has HttpServletRequest as one of
I'm following with mkyong Jexcel with Spring tutorial and everything looks fine.it can create
I'm having trouble with Spring MVC RequestMapping and I'm hoping someone can give me
I have a Spring controller that returns XHTML, what's the easiest way to setup
If I have a Spring Controller with two SEPARATE methods, one annotated by: @ExceptionHandler(Exception.class)

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.