Grails Command 对象@PostConstruct 还是什么?

发布于 2024-11-18 10:34:36 字数 309 浏览 2 评论 0原文

我想从注入的服务初始化命令字段。

因此,我需要在命令的方法之后完全初始化,但之前 params 被分配给字段时执行。

我该怎么做呢?好的,我可以在构造函数中手动获取一个 Service bean。还有更好的办法吗?

没有运气 @PostConstructInitializingBean - 看起来 Command 不是一个 bean,对吗?

Grails 1.3.5

I want to initialize Command field from an injected Service.

So I need to execute a Command's method after it has been fully initialized, but before params is assigned to fields.

How can I do it? OK, I can get a Service bean by hand in constructor. Any better way?

Had no luck with @PostConstruct or InitializingBean - looks like Command is not a bean, right?

Grails 1.3.5

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小ぇ时光︴ 2024-11-25 10:34:36

你是对的,命令不是 bean。您可以通过服务方法实例化命令实例并在那里进行初始化并将实例返回到控制器。比使用返回的实例调用控制器的bindData,如下所示:

// controller code
def myService // injected

def action = {
    def command = mySerivce.createCommandInstance() 
    bindData(command, params)
}

// service code
class MyService {
    def createCommandInstance() {
       def cmd = new MyCommand()
       doSomeInitializationWithCommand(cmd)
       return cmd
    }
}

You're right the command is not a bean. You could instantiate the command instance by a service method and do initialization there and return the instance back to the controller. Than call the controller's bindData with the returned instance like this:

// controller code
def myService // injected

def action = {
    def command = mySerivce.createCommandInstance() 
    bindData(command, params)
}

// service code
class MyService {
    def createCommandInstance() {
       def cmd = new MyCommand()
       doSomeInitializationWithCommand(cmd)
       return cmd
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文