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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T04:23:54+00:00 2026-05-15T04:23:54+00:00

Why is it so hard to extract the date from the view via the

  • 0

Why is it so hard to extract the date from the view via the params in a grails controller?

I don’t want to extract the date by hand like this:

instance.dateX = parseDate(params["dateX_value"])//parseDate is from my helper class

I just want to use instance.properties = params.

In the model the type is java.util.Date and in the params is all the information: [dateX_month: 'value', dateX_day: 'value', ...]

I searched on the net and found nothing on this. I hoped that Grails 1.3.0 could help but still the same thing.

I can’t and will not believe that extracting the date by hand is necessary!

  • 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-15T04:23:55+00:00Added an answer on May 15, 2026 at 4:23 am

    Grails Version >= 2.3

    A setting in Config.groovy defines the date formats which will be used application-wide when binding params to a Date

    grails.databinding.dateFormats = [
            'MMddyyyy', 'yyyy-MM-dd HH:mm:ss.S', "yyyy-MM-dd'T'hh:mm:ss'Z'"
    ]
    

    The formats specified in grails.databinding.dateFormats will be attempted in the order in which they are included in the List.

    You can override these application-wide formats for an individual command object using @BindingFormat

    import org.grails.databinding.BindingFormat
    
    class Person { 
        @BindingFormat('MMddyyyy') 
        Date birthDate 
    }
    

    Grails Version < 2.3

    i can’t and will not belief that extracting the date by hand is nessesary!

    Your stubbornness is rewarded, it has been possible to bind a date directly since long before Grails 1.3. The steps are:

    (1) Create a class that registers an editor for your date format

    import org.springframework.beans.PropertyEditorRegistrar
    import org.springframework.beans.PropertyEditorRegistry
    import org.springframework.beans.propertyeditors.CustomDateEditor
    import java.text.SimpleDateFormat
    
    public class CustomDateEditorRegistrar implements PropertyEditorRegistrar {
    
        public void registerCustomEditors(PropertyEditorRegistry registry) {
    
            String dateFormat = 'yyyy/MM/dd'
            registry.registerCustomEditor(Date, new CustomDateEditor(new SimpleDateFormat(dateFormat), true))
        }
    }
    

    (2) Make Grails aware of this date editor by registering the following bean in grails-app/conf/spring/resources.groovy

    beans = {
        customPropertyEditorRegistrar(CustomDateEditorRegistrar)
    }
    

    (3) Now when you send a date in a parameter named foo in the format yyyy/MM/dd it will automatically be bound to a property named foo using either:

    myDomainObject.properties = params
    

    or

    new MyDomainClass(params)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I discovered that it is possible to extract the hard-coded strings from a binary.
This is a very hard to explain question and I hope my code extract
I am using a library called EXIFextractor to extract metadata information from images. This
I'm having a hard time understanding this regex stuff... I have a string like
I'm trying to extract email info from HTML files in my hard drive. If
Hard to come up with a proper title for this problem. Anyway... I'm currently
Hard-to-read-line @daily export sunshine=~/logs/Sunshine-`date '+\%F'` && export sunshineUrl=http://www.sunshine.net/main/search_results.asp?currency_id=1&min_price=&max_price=50000&country_id=241&region_id=&Submit=Search && mkdir -p $sunshine && cd
How hard would it be to use GCC instead of VC++ from within Visual
From hard experience I've found it useful to occasionally save the state of my
How hard will it be to transfer from my existing expertise in C# to

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.