@grails.web.Action

Here are the examples of the java api @grails.web.Action taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

19 Source : HelloController.java
with Apache License 2.0
from thefreebit

@Action
public String abc() {
    return "hello world abc";
}

19 Source : HelloController.java
with Apache License 2.0
from thefreebit

@Action
public String index() {
    return "hello world index";
}