Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder, is any convenient and appropriate way to describe in Tapestry5 in AppModule some actions, which should be invoked before bind() method will run?

Of course, it is possible, to include such actions inside bind() method in top of method block. But it seems, that must be some other possibility for this.

BTW, @Startup is not eligible way for this, due in my case it uses already started services, but I need to some actions before services will be bound.

share|improve this question
Maybe you can use service builder methods? (tapestry.apache.org/tapestry-ioc-modules.html) – Nathan Q Jan 30 at 13:56
May be you don't need to ?? Is it ok to share what precisely are you trying to do ? – Muhammad Gelbana Feb 5 at 20:16
I think, I need. Sorry, but let me decide what architecture I want by my self. – Andremoniy Feb 6 at 8:44

2 Answers

If it is a Tapestry web application, you can extend TapestryFilter and have the initialization step there. Look into the source code of TapestryFilter for inspiration. Also see TapestryAppInitializer

share|improve this answer
Thanks, but it is not, what I actually ask. I wonder, how to do it correctly inside AppModule... – Andremoniy Jan 30 at 18:59

Sometimes I have found myself using an unnamed static block in the module class - mostly to initialize legacy services that my Tapestry services depend on. Something like:

public final class MyModule {

    static {
        // early set-up here
    }

    public static void bind(ServiceBinder binder) {
        // binding here
    }
}

This seems to improve the module code readability a bit, but at the same time could be somewhat difficult to set up for unit testing.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.