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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:43:51+00:00 2026-06-15T00:43:51+00:00

I am creating a web service with JAX-RS. I know you can annotate the

  • 0

I am creating a web service with JAX-RS. I know you can annotate the domain model with JAXB annotations and lean back and watch the whole class being transformed to XML/JSON. However, this is not suitable for all scenarios in my application. It is not always appropriate that the class is marshalled to XML. Sometimes I only need some fields etc, and I also want to be able to add custom elements on the fly which is not represented in the domain model.

How would you do that? Do I need to use other frameworks for this? I just found GSON, is that worth looking at? XML representation of my resources is not that important. If I am using GSON, what should the web service respond with? Do you just use String as return type then?

Pseudocode, haven’t looked at GSON yet.

@Produce("application/json")
public String someMethod() {
   return gson.toJSON();
}
  • 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-15T00:43:53+00:00Added an answer on June 15, 2026 at 12:43 am

    In a case where you have multi-variant response types its often best to use javax.ws.rs.core.Response as the return. This gives you full control, at run time, of determining the actual entity that will be wrapped and returned.

    You can then, when your resource method is invoked, decide to either return the core business object, or a wrapper around the business object, or a custom serialized version (as a String). Rough pseudocode:

    @Produce("application/json")
    public Response someMethod() {
    
        switch(mySpecialCase) {
            case 1:
                return Response.ok(coreEntity).build(); break;
            case 2:
                return Response.ok(new LiteEntity(coreEntity)).build(); break;
            case 3:
                return Response.ok(Util.toGSON(coreEntity).toString()).build(); break;
        }
    }
    

    One advantage of this approach is that server side interceptors will still fire and perform translations on your entity objects, so that you can still take advantage of on-the-fly serialization to JSON and XML, but at the same time you can circumvent the translation, by using a String as the entity type.

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

Sidebar

Related Questions

I am creating a simple SOAP web service using a SLSB and JAX-WS annotations.
I'm creating REST service using ASP.NET Web API. How can I return 401 status
I'm creating a web service with a variety of classes, many of which can
As you all know creating a web service with generic methods is not possible.
I am creating a SOAP service using JAX-WS and JAXB, by annotating the classes.
I am creating a web service in ASP.Net. I have looked and can't find
I am creating a web service to allow application developers (A.K.A. My friends) to
I am creating a web service for work. I am breaking it down into
I'm in the process of creating a web service that uses XML to handle
I am creating a REST Web Service using Java and Jersey API. The basic

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.