Tagged Questions
The command-objects tag has no wiki summary.
12
votes
3answers
790 views
How to add constraints on inherited properties in a grails domain sub-class
Here's what I'd like to do:
class A {
String string
static constraints = {
string(maxSize:100)
}
}
class B extends A {
static constraints = {
string(url:true)
}
}
So class A ...
4
votes
2answers
2k views
Grails: How do you unit test a command object with a service injected into it
I am trying to test a Controller
that has a Command object with data binding.
The Command Object has a Service injected into it.
But When I try test the command object the injected service method
is ...
1
vote
2answers
19 views
Could not serialize flow execution
Exception:
Error 500: Could not serialize flow execution; make sure all objects stored in
flow or flash scope are serializable
Servlet: grails
URI: ...
1
vote
2answers
287 views
Usage of command objects in Grails for updates
I read that services are used for updates across multiple domain classes. However, I have command classes, and I would like to know whether putting the logic that makes transactional updates into a ...
1
vote
1answer
370 views
Spring @ModelAttribute for only one handler method
Is it possible to let @ModelAttribute method be invoked only for a specific handler method and supply the command object for only one handler method invocation ? Not for each handler method within a ...
1
vote
2answers
392 views
Grails 1.3.5 controller test nulls command object
Straight from page 104 of "The Definitive Guide to Grails (Second Edition)":
void testLoginUserNotFound() {
mockRequest.method = "POST"
mockDomain(User)
...
1
vote
2answers
724 views
WPF Binding Command
I'm putting a WPF application together in which I have an image control which I want to bind a custom command object to from my view model that will execute when the image is clicked. I have exposed ...
0
votes
2answers
28 views
How to bind data to a command object that has a nested property? (non domain object)
I am trying to bind some data to an object that is part of a command object. The object stays null when trying to use it. Probably i am not giving the correct data in the gsp but i have no clue what ...
0
votes
1answer
53 views
Grails Command Object nullable constraint
I recently upgraded a 1.3.6 application to Grails2. My test cases have started failing
Here is the scenario, I have a command object and a constraint. When the request hits the action, without the ...
0
votes
1answer
63 views
grails command object and fields with prefixes
Im using grails 1.3.7 and here is the case...
Have a huge form with a few different prefixes for its fields (later used in data binding) and trying to validate thru a command object... however the ...
0
votes
1answer
96 views
Grails controller, Command Object explotion
In Grails controller actions, for validations, We use command objects. The problem is the number of CommandObject classes have exploded.
def publish = { PublishCommand command ->
if ...
0
votes
1answer
149 views
Grails - Command object, customized conditional validator
I would like to build a customized validator in my Command object, to make sure the field email address of a form will not be empty if the notifyMe checkbox is selected.
Here is my latest attempt to ...
0
votes
1answer
254 views
Grails Plugin: Getting all command object classes
In a plugin, I need to iterate over all domain and command object classes to apply some meta-magic to them. Getting the domain classes isn't a problem, however command objects are not that easy to get ...