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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:27:54+00:00 2026-05-26T01:27:54+00:00

The Play! framework generates getters and setters for each public field of a model

  • 0

The Play! framework generates getters and setters for each public field of a model class at runtime.

public class Product {

    public String name;
    public Integer price;
}

will be transformed to

public class Product {

    public String name;
    public Integer price;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getPrice() {
        return price;
    }

    public void setPrice(Integer price) {
        this.price = price;
    }
}

The manual explains further:

Then when you want to access a property you can just write:

product.name = "My product";
product.price = 58;

Which is translated at load time to:

product.setName("My product");
product.setPrice(58);

… and warns:

You can’t directly use getter and setter methods to access properties
if you rely on automatic generation. These methods are generated at
runtime. So if you reference them in code you write, the compiler
won’t find the methods and will generate an error.

Since I cannot use these getters and setters from outside of the Play! project, I see no benefit in generating them. What is the benefit compared to public fields, refactorings (encapsulate a field and change the callers) of all modern IDEs taken into account?

  • 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-26T01:27:55+00:00Added an answer on May 26, 2026 at 1:27 am

    Short answer: Beans require them.

    Longer: Beans specification requires (amongst other things) getter/setter for each internal field. I’m not 100% sure, but I assume both Hibernate and Groovy templates expect Java Beans (the POJO Beans, not the Java EE one!), thus they’ll ask for getters/setters. Play just saves you time doing that, so you don’t have to worry with boiler-plate code (unless you want to define your own getter/setter for some reason, which you can do).

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

Sidebar

Related Questions

in scala play framework I seen this code: abstract class AnalyserInfo case class ColumnC(typeName:String,fieldName:String)
I have installed jpagen module in my system in play framework. Which successfully generates
Using Play Framework, you can do something like this: public static void mymethod() {
play framework: 1.2.3 Hi, I am trying to purge my database by using play's
Does Play Framework 2.0 have any built-in equivalent to 1.2.x's jsAction ? If not,
In a play framework 1.2.4 Controller, is it possible to get the contents of
I'm following the Play Framework 2.0 tutorial for Java and get this error when
After running a new Play-framework 2.0 based project, i failed to clean it -
I'm using play framework 1.2.4 and i'm preparing an meal order system. So i
I have installed Play framework on my Macbook pro. Play 1.2.4 on the latest

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.