diff options
| author | Franck Cuny <franckcuny@gmail.com> | 2016-08-04 11:45:44 -0700 |
|---|---|---|
| committer | Franck Cuny <franckcuny@gmail.com> | 2016-08-04 11:45:44 -0700 |
| commit | 585b48b6a605cb71ef99dd767880e1b7ee5bf24e (patch) | |
| tree | c65377350d12bd1e62e0bdd58458c1044541c27b /posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.org | |
| parent | Use Bullet list for the index. (diff) | |
| parent | Mass convert all posts from markdown to org. (diff) | |
| download | lumberjaph-585b48b6a605cb71ef99dd767880e1b7ee5bf24e.tar.gz | |
Merge branch 'convert-to-org'
Diffstat (limited to '')
| -rw-r--r-- | posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.org | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.org b/posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.org new file mode 100644 index 0000000..09e6b1c --- /dev/null +++ b/posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.org @@ -0,0 +1,28 @@ +Let's say you have a large +[[http://search.cpan.org/perldoc?Catalyst][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 +[[http://search.cpan.org/perldoc?Module::Pluggable][Module::Pluggable]] +to load the components, so you can easily configure this. In your +application's configuration, add: + +#+BEGIN_EXAMPLE + setup_components: + except: + - MyApp::Model::AAAA + - MyAPP::Model::BBBB::REST + ... +#+END_EXAMPLE + +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: + +#+BEGIN_EXAMPLE + setup_components: + search_path: + - MyApp + - MyOtherApp::Model +#+END_EXAMPLE |
