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 6002037
In Process

The Archive Base Latest Questions

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

I have three resources: @RequestMapping(value = sample, method = RequestMethod.GET, headers = Accept=text/html) public

  • 0

I have three resources:

   @RequestMapping(value = "sample", method = RequestMethod.GET, headers = "Accept=text/html")
   public ResponseEntity<String> sampleResourceHtml()

   @RequestMapping(value = "sample", method = RequestMethod.GET, headers = "Accept=application/xml")
   public ResponseEntity<String> sampleResourceXml()

   @RequestMapping(value = "sample", method = RequestMethod.GET, headers = "Accept=application/json")
   public ResponseEntity<String> sampleResourceJson()

When a HTTP client accesses the url with Accept=*/* the webapp returns a 404

In this case I want to invoke sampleResourceHtml()

Changing "Accept=text/html" to "Accept=text/html, */*" will make my webapp accept requests with Accept=*/* which is what I want, however it will also accept requests with Accept=foo/bar which is not what I want.

How do I modify my code to return a supported media type for requests containing wildcards without returning an unexpected media type for unsupported requests?

  • 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-23T00:55:14+00:00Added an answer on May 23, 2026 at 12:55 am

    You might find it easier to configure this in your context with the AnnotationMethodHandlerAdapter, so that the Accept header is automatically handled and the conversion done by Spring and not programmatically.

    For example, you could use the following configuration:

    <bean id="xstreamMarshaller" class="org.springframework.oxm.xstream.XStreamMarshaller"/>
      <bean id="xmlMessageConverter" class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter">
      <constructor-arg ref="xstreamMarshaller"/>
    </bean>
    <bean id="jsonHttpMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"/>
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
      <property name="messageConverters">
        <util:list>
          <ref bean="xmlMessageConverter"/>
          <ref bean="jsonHttpMessageConverter"/>
        </util:list>
      </property>
    </bean>
    

    And modify the controller to return the object which Spring will convert to the required type.

    @RequestMapping(value = "sample", method = RequestMethod.GET)
    public ResponseEntity<String> sampleResource()
    

    Note: You will need the relevant libraries on the classpath.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a java project consisting of three modules project-common project-a project-b Project a
I have an ATL ActiveX control that raises three events (Connected, Authenticated, Disconnected) which
In asp.net the major data stores are application, session and we also have the
My application is somehowe a library, represented by a UITableView, each row displays three
I am playing around with a small MFC-wizard-generated application, in Visual C++ 2010, and
This is the only official documentation available for the Halo: Reach stats API. If
NOTE: Please ignore my use of MultivaluedMap instead of multiple vargs String...args . Is
I started creating JPA/hibernate mappings for a legacy database based on Oracle. At one
I'm starting with the SDK and I am trying to set an app using
Could someone maybe tell me what i'm doing wrong? I'm betting im missing one

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.