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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:59:17+00:00 2026-05-10T21:59:17+00:00

How to configure JAXB unmarshaller so it will trim leading and trailing whitespaces from

  • 0

How to configure JAXB unmarshaller so it will trim leading and trailing whitespaces from strings?

For instance let’s consider a simple binding between a Java bean and XML using JAXB annotations:

@XmlRootElement(name='bean') class Bean {    @XmlElement(required=true)   String name;    @XmlElement(required=true)   int number; } 

I would like to be able to unmarshal XML given bellow so bean.name does not include starting and trailing whitespaces – is ‘My name‘, not ‘\n My name\n ‘.

<bean>   <name>     My name   </name>   <number>1</number> </bean> 
  • 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. 2026-05-10T21:59:17+00:00Added an answer on May 10, 2026 at 9:59 pm

    Use a custom Adapter class. I was thinking that NormalizedStringAdapter would do the work but it’s only for unmarshaling and it doesn’t do what you want anyway.

    public class MyNormalizedStringAdapter extends XmlAdapter<String, String> {      @Override     public String marshal(String text) {         return text.trim();     }      @Override     public String unmarshal(String v) throws Exception {         return v.trim();     } } 

    then decorate the field with your adapter like this:

    @XmlElement(required=true) @XmlJavaTypeAdapter(MyNormalizedStringAdapter.class) String name; 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to configure JAXB to so that a generated class implements
I'm trying to generate JAXB classes from a .xsd file. I figured out that
In my library's code, I load class names from an XML file using JAXB,
Is there a way to configure the @XmlTransient JPA2.0 annotation that it will only
I configure tomcat to debug remotely from Eclipse: start Configure Tomcat. Go to Java
I configure my ios application with pushwoosh SDK and its really simple and work
I configure eclipse Helios Service Release 2 , eclipse properly download and configure ADT
I configure Drupal to log in with CAS. After login in CAS, When I
My configuration: app.configure(function(){ app.set('views', __dirname + '/views'); app.set('view engine', 'jade'); app.use(express.bodyParser()); app.use(express.cookieParser()); app.use(express.session({ secret:
I am trying to configure my xmonad.hs so that when I start my session

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.