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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T17:41:18+00:00 2026-06-05T17:41:18+00:00

I am a grails beginner. i have a 2domain class class Employee { String

  • 0

I am a grails beginner.

i have a 2domain class

class Employee {
        String name
        String department
    static constraints = {
    }
    public String toString() {
        name
    }
}



class Address {
    String line1
    String line2
    Employee employee

    static belongsTo = Employee

    static constraints = {
    }
}

where Address belongs to Employee .. so i have given belongsTo association.

My Employee/create.gsp page takes input for fields specified in Employee and Address.

so on creation of employee , address must be get save automatically .

so what could be the save action in EmployeeController

i have tried some thing like this but did not work.

def save = {
    def employeeInstance = new Employee(params)
    def addressInstance = new Address(params)
    if (employeeInstance.save(flush: true)) {
        flash.message = "${message(code: 'default.created.message', args: [message(code: 'employee.label', default: 'Employee'), employeeInstance.id])}"
        redirect(action: "show", id: employeeInstance.id)
    }
    else {
        render(view: "create", model: [employeeInstance: employeeInstance])
    }
}  

how to save this associated model ?

  • 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-05T17:41:20+00:00Added an answer on June 5, 2026 at 5:41 pm

    Here you have a one-to-one relationsip – add an address property to the Employee class.

    class Employee {
        String name
        String department
        Address address
    
        public String toString() {
            name
        }
    }
    

    Change your belongsTo of the Address like this:

    class Address {
        String line1
        String line2
    
        static belongsTo = [employee: Employee]
    }
    

    Now you could create an Employee like this:

    def employeeInstance = new Employee(params)
    employeeInstance.address = new Address(params)
    if (employeeInstance.save(flush: true)) {
        // your logic
    }
    

    Read the docs (one-to-one relationship) for further informations.

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

Sidebar

Related Questions

In Grails you can have a child class: class Child { Father father static
In Grails 1.3.7, I have a domain model like this: abstract class A {
My Grails 2.0 app has a User domain object defined: class User { static
I am new to Grails. I have a Person domain class as : class
Using Grails database-migration I have a table in production defined like so: +--------------+------------+------+-----+---------+----------------+ |
I am writing a Grails/Groovy app and I have a JSON object with a
I have a Grails web application running on a german localized machine. How does
I have a RestFull grails api that i expose through grails Controller. I need
Grails 2.0 seems to have some changes to DataSource.groovy and I don't seem to
Using Grails 2.0.0 I am created service, that creates instances of Player class and

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.