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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:08:55+00:00 2026-05-22T20:08:55+00:00

I’m having trouble getting a field which is in an object which is inside

  • 0

I’m having trouble getting a field which is in an object which is inside another object. I can get some fields, but others no.

This is the test I created to reproduce this error.

public void commentTest(){
    try {
        new MyUser("mauri@mail.com","Maurizio Pozzobon","01","facebook","hash").insert();
    } catch (Exception e) {}
    MyUser user = MyUser.findByEmail("mauri@mail.com");
    Place place = new Place(user,"posto","bel posto",null,null);
    place.insert();
    assertNotNull(user);
    Event e =new Event(user,place, "Festa","Questa è una gran bella festa",null,new Date(),(long) 10,false,null);
    e.insert();
    assertNotNull(user.nome);
    EventComment ec = new EventComment(user, e, "TestComment", new Date());
    ec.insert();
    List<EventComment> ecs = e.comments.fetch();
    for (EventComment comment : ecs) {
        assertNotNull(comment.user.id);
        MyUser us= MyUser.findById(comment.user.id);
        assertNotNull(us.nome);
        assertNotNull(comment.user.nome);
    }
} 

It fails at the line

assertNotNull(comment.user.nome);

This isn’t a deal breaker since I still can get to that field doing other calls to the DB, but it seems weird I can access some fields and others can’t

In MyUser I tried both declaring the ‘nome’ field with and without the following annotations

@Column("nome")
@Max(200) @NotNull
public String nome;
  • 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-22T20:08:55+00:00Added an answer on May 22, 2026 at 8:08 pm

    No basically, this is normal.
    You use GAE, am I right?
    In GAE, remember that there is no JOIN as in SQL DB.
    When you fetch a comment, the linked user is not fetched entirely but only the user.id field is filled. That’s why assertNotNull(comment.user.id) is OK.
    So, by default, if you want the user associated to a comment, you need to fetch it manually.

    This limitation should change soon as we are going to provide entity grouping very soon and also a new annotation @Join that will fetch the linked entity(ies) automatically.

    You can already try this annotation but it’s not yet finalized.
    In your comment class, add the @Join :

    @Join
    @Column("user")
    User user;
    

    Then when you fetch one comment, it will also fetch the user with it.

    Comment comment = Comment.findById("id", value);  
    assertNotNull(comment.user.nome); // will be OK.
    

    But it shouldn’t work in the case : List<EventComment> ecs = e.comments.fetch();
    This join is much more complicated and until we have entity grouping, it would consume too much resources behind the curtain.

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

Sidebar

Related Questions

No related questions found

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.