We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d2cd16 commit e102de2Copy full SHA for e102de2
grails-plugin-databinding/src/main/groovy/org/grails/plugins/databinding/DataBindingConfiguration.java
@@ -32,6 +32,11 @@ public DataBindingConfiguration(DataBindingConfigurationProperties configuration
32
this.configurationProperties = configurationProperties;
33
}
34
35
+ /*
36
+ Must be lazy initialized because plugins ValueConverters & StructuredBindingEditors may be initialized by the Grails
37
+ Bean DSL instead of an AutoConfiguration. For example, DataBindingConfigurationSpec defines beans as part of the test
38
+ startup and without this being Lazy it, those beans will never be wired to the GrailsWebDataBinder bean.
39
+ */
40
@Lazy
41
@Bean("grailsWebDataBinder")
42
protected GrailsWebDataBinder grailsWebDataBinder(
0 commit comments