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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:57:05+00:00 2026-05-26T05:57:05+00:00

Is there a way to make a domain class name human readable in Groovy/Grails?

  • 0

Is there a way to make a domain class name human readable in Groovy/Grails? For example, I might have a class called LibraryBook and in the application views, it will be shown as “Create LibraryBook”. Is it possible to make Grails show this as “Create Library Book”?

  • 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-26T05:57:05+00:00Added an answer on May 26, 2026 at 5:57 am

    If you look at the top of your grails-app/views/libraryBook/create.gsp file, you will see something like:

        <g:set var="entityName" value="${message(code: 'libraryBook.label', default: 'LibraryBook')}" />
    

    This shows you can set a libraryBook.label message property to override the default name of LibraryBook. This property should be set in the grails-app/i18n/message.properties file. The documentation for this can be found here.

    As an interesting aside (and not the recommended best practice), you can alter the default grails scaffolding templates. First, you need to install the templates with:

    grails install-templates
    

    Then, you can edit the file src/templates/scaffolding/create.gsp (and list.gsp, etc) and change the line:

    <g:set var="entityName" value="\${message(code: '${domainClass.propertyName}.label', default: '${className}')}" />
    

    to

    <g:set var="entityName" value="\${message(code: '${domainClass.propertyName}.label', default: '${className.replaceAll(/\B[A-Z]/){ " $it" }}')}" />
    

    As you can see, this code:

    className.replaceAll(/\B[A-Z]/){ " $it" }
    

    Takes the CamelCase classname, and replaces all capital letters (apart from the first one) with the letter following a space character.

    Then when you call generate-views or generate-all, the newly created gsp will have this default name with spaces in it

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

Sidebar

Related Questions

Is there any way to make a Domain Class setter have imperative actions. This
Is there a way to make groovy ignore extra attributes in a map during
Is there a way to make a click-to-edit control in silverlight? I've got some
Is there a way to make this code work? LogonControl.java @Audit(AuditType.LOGON) public void login(String
Is there a way to make a java.awt.Font strike through?
Is there a way to make this line shorter? bool pass = d !=
Is there any way to make a DataTemplate reference itself just from XAML? In
Is there a way to make a variable non-inheritable in python? Like in the
Is there a way to make Windows Mobile not use the main phone app?
Is there a way to make RubyGems tell if there are any updates available?

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.