From 8ddf2e94df70707b458528a437759b96046d3e01 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 26 Nov 2013 10:36:10 -0800 Subject: Huge update. Moved all posts from textile to markdown. Updated all the CSS and styles. Added a new page for the resume. --- ...ent-some-components-to-be-loaded-by-catalyst.md | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md (limited to '_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md') diff --git a/_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md b/_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md new file mode 100644 index 0000000..9466bbc --- /dev/null +++ b/_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md @@ -0,0 +1,26 @@ +--- +layout: post +summary: In which I show how to disable some components in Catalyst. +title: How to prevent some components to be loaded by Catalyst +--- + +Let's say you have a large [Catalyst](http://search.cpan.org/perldoc?Catalyst) application, with a lot of compoments. When you deploy your application, or when you want to test it while your developping, you may not want to have some of thoses components loaded (you don't have all the dependencies, they are incompatible, etc...). Catalyst use [Module::Pluggable](http://search.cpan.org/perldoc?Module::Pluggable) to load the components, so you can easily configure this. In your application's configuration, add: + +{% highlight yaml %} +setup_components: + except: + - MyApp::Model::AAAA + - MyAPP::Model::BBBB::REST + ... +{% endhighlight %} + +Module::Pluggable have some other interesting features. You may have a second Catalyst application, and want to use one or more components from this one. You can easily do this: + +{% highlight yaml %} +setup_components: + search_path: + - MyApp + - MyOtherApp::Model +{% endhighlight %} + + -- cgit v1.2.3