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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:24:41+00:00 2026-05-31T12:24:41+00:00

How can I return Restlet response in desired format? I am using the method:

  • 0

How can I return Restlet response in desired format?
I am using the method:

@Get ("json")
public Address sendResponse(){
    Address add = getAddress();
    return add;
}

Right now I have to explicitly convert java object to a json string as a response to browser. Can’t it be taken care by Restlet framework itself?

Spring MVC’s Restful implementation can do it. I am looking similar implementation in Restlet too.

  • 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-31T12:24:42+00:00Added an answer on May 31, 2026 at 12:24 pm

    In fact, there are two ways to do that with Restlet:

    • the explicit one using JSON representations. The JSONRepresentation if you use objects from org.json or the JacksonRepresentation if you want JSON / Object mapping. You can find below an example:

      @Get ("json")
      public Representation sendResponse(){
          Address add = getAddress();
          return new JacksonRepresentation<Address>(address);
      }
      
    • the implicit one using converter. In this case, it’s the code you gave. You must have in your classpath an appropriate converter such as the one provided by the org.restlet.ext.jackson extension. It will detect that a JSON content needs to be returned and implicitly convert your Address object to a JSON content.

    Just for hint, the json media specified in the GET annotation tells Restlet to use the associated method to handle the request when application/json is defined for conneg (content negociation) with the accept header.

    Hope it helps you.
    Thierry

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

Sidebar

Related Questions

I'm wondering if I can return the response header Content-Type: application/json text/json or isn't
I can't seem to figure out how to add headers to my restlet response.
In c# you can return an integer to the underlying caller using Environment.Exit(n) (which
I have a method that can return either a single object or a collection
I have a TSQL SELECT that can return a null. I tried using ISNULL
In ASP.Net MVC action methods can return json objects simply by returning something like
my controller can return different views depending on action method logic. Action method 'Create'
I know I can return an empty table using the following query : select
How I can return generic type from method? I wrote like this, but it
Is there anyway I can handle both json and html return types when posting

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.