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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:35:50+00:00 2026-06-10T00:35:50+00:00

in JAXB, if annotations were not provided, the element names will be derived from

  • 0

in JAXB, if annotations were not provided, the element names will be derived from the property names not fields, but what about attributes in this case? is there any default behavior for writing out attributes back to the XML file?

  • 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-10T00:35:51+00:00Added an answer on June 10, 2026 at 12:35 am

    1) If annotations were not provided:
    Every public getter/setter pair and every public field will be
    automatically bound to XML, unless annotated by {@link XmlTransient}

    For example

    public class Cat 
    {
        public String name = "tomcat";
    
        private String nick = "catalina";
    
        public int getAge() { return 5; }
    
        public void setAge(int age) {}
    }   
    

    after

    JAXB.marshal(cat, System.out);  
    

    output is

    <cat>
        <name>tomcat</name>
        <age>5</age>
    </cat>
    

    2) What about XML attributes? XML attribute is named like field or getter/setter pair and placed in the root node
    for example

    @XmlAccessorType(XmlAccessType.FIELD)
    public class Cat 
    {
        String name = "tomcat";
    
        @XmlAttribute
        String nick = "catalina";
    
        @XmlAttribute
        String home = "java.home";
    
        int age = 5;
    }  
    

    output is

    <cat home="java.home" nick="catalina">
        <name>tomcat</name>
        <age>5</age>
    </cat>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Usually JAXB works but it is not parsing my schema correctly or something as
How to configure JAXB unmarshaller so it will trim leading and trailing whitespaces from
I have a JPA entity class with jpa annotations but without jaxb annotations: @Entity
I'm trying to develop a new webservice using JAX-WS and JAXB annotations. When I
We have this JAXB annotation: @XmlElement(name = Strategy, required = true) protected List<Strategy> strategy;
Use case: Wanna insert custom annotation to fields in java class generated by JAXB
I use JAXB 2.1 to generate Java classes from several XSD files that I
I have Java classes with the following structure (the class names do not imply
JAXB Generated classes only capture the structural information from the XML schema that is
I feel embarrassed to ask: but what is the right combination of annotations for

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.