fix methods and action names to match the next example (which is supposed to be equiv...
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Intro.pod
CommitLineData
11876a3b 1=head1 NAME
cb93c9d7 2
3Catalyst::Manual::Intro - Introduction to Catalyst
4
5=head1 DESCRIPTION
6
7This is a brief introduction to Catalyst. It explains the most important
8features of how Catalyst works and shows how to get a simple application
9up and running quickly. For an introduction (without code) to Catalyst
10itself, and why you should be using it, see L<Catalyst::Manual::About>.
11For a systematic step-by-step introduction to writing an application
12with Catalyst, see L<Catalyst::Manual::Tutorial>.
13
14=head2 What is Catalyst?
15
16Catalyst is an elegant web application framework, extremely flexible
792ad331 17yet extremely simple. It's similar to Ruby on Rails, Spring (Java), and
18L<Maypole|Maypole>, upon which it was originally based. Its most
19important design philosphy is to provide easy access to all the tools
20you need to develop web applications, with few restrictions on how you
21need to use these tools. However, this does mean that it is always
22possible to do things in a different way. Other web frameworks are
23I<initially> simpler to use, but achieve this by locking the programmer
24into a single set of tools. Catalyst's emphasis on flexibility means
25that you have to think more to use it. We view this as a feature. For
f577e42d 26example, this leads to Catalyst being better suited to system integration
792ad331 27tasks than other web frameworks.
cb93c9d7 28
29=head3 MVC
30
31Catalyst follows the Model-View-Controller (MVC) design pattern,
32allowing you to easily separate concerns, like content, presentation,
33and flow control, into separate modules. This separation allows you to
34modify code that handles one concern without affecting code that handles
35the others. Catalyst promotes the re-use of existing Perl modules that
36already handle common web application concerns well.
37
38Here's how the Model, View, and Controller map to those concerns, with
39examples of well-known Perl modules you may want to use for each.
40
41=over 4
42
43=item * B<Model>
44
45Access and modify content (data). L<DBIx::Class>, L<Class::DBI>,
46L<Xapian>, L<Net::LDAP>...
47
48=item * B<View>
49
50Present content to the user. L<Template Toolkit|Template>,
51L<Mason|HTML::Mason>, L<HTML::Template>...
52
53=item * B<Controller>
54
55Control the whole request phase, check parameters, dispatch actions, flow
f577e42d 56control. This is the meat of where Catalyst works.
cb93c9d7 57
58=back
59
60If you're unfamiliar with MVC and design patterns, you may want to
61check out the original book on the subject, I<Design Patterns>, by
62Gamma, Helm, Johnson, and Vlissides, also known as the Gang of Four
63(GoF). Many, many web application frameworks are based on MVC, which
64is becoming a popular design paradigm for the world wide web.
65
66=head3 Flexibility
67
68Catalyst is much more flexible than many other frameworks. Rest assured
69you can use your favorite Perl modules with Catalyst.
70
71=over 4
72
73=item * B<Multiple Models, Views, and Controllers>
74
75To build a Catalyst application, you handle each type of concern inside
76special modules called L</Components>. Often this code will be very
77simple, just calling out to Perl modules like those listed above under
78L</MVC>. Catalyst handles these components in a very flexible way. Use
79as many Models, Views, and Controllers as you like, using as many
80different Perl modules as you like, all in the same application. Want to
81manipulate multiple databases, and retrieve some data via LDAP? No
82problem. Want to present data from the same Model using L<Template
83Toolkit|Template> and L<PDF::Template>? Easy.
84
85=item * B<Reuseable Components>
86
87Not only does Catalyst promote the re-use of already existing Perl
88modules, it also allows you to re-use your Catalyst components in
89multiple Catalyst applications.
90
91=item * B<Unrestrained URL-to-Action Dispatching>
92
93Catalyst allows you to dispatch any URLs to any application L</Actions>,
94even through regular expressions! Unlike most other frameworks, it
95doesn't require mod_rewrite or class and method names in URLs.
96
97With Catalyst you register your actions and address them directly. For
98example:
99
a8df13c3 100 sub hello : Local {
cb93c9d7 101 my ( $self, $context ) = @_;
102 $context->response->body('Hello World!');
103 }
104
105Now http://localhost:3000/hello prints "Hello World!".
106
1b2f9849 107Note that actions with the C< :Local > attribute are equivalent to
a8df13c3 108using a C<:Path('action_name') > attribute, so our action could be
109equivalently:
4299d9f5 110
a8df13c3 111 sub hi : Path('hello') {
4299d9f5 112 my ( $self, $context ) = @_;
113 $context->response->body('Hello World!');
114 }
115
116
cb93c9d7 117=item * B<Support for CGI, mod_perl, Apache::Request, FastCGI>
118
492f2dd5 119Use L<Catalyst::Engine::Apache> or L<Catalyst::Engine::CGI>. Another
120interesting engine is L<Catalyst::Engine::HTTP::Prefork> - available from CPAN
121separately - which will turn the built server into a fully fledged production
122ready server (although you'll probably want to run it behind a front end proxy
123if you end up using it).
cb93c9d7 124
eb09ba22 125=item * PSGI Support
126
127Starting with Catalyst version 5.9 Catalyst ships with L<PSGI> integration
128for even more powerful and flexible testing and deployment options. See
129L<Catalyst::PSGI> for details.
130
8e728a18 131=back
132
cb93c9d7 133=head3 Simplicity
134
135The best part is that Catalyst implements all this flexibility in a very
136simple way.
137
138=over 4
139
140=item * B<Building Block Interface>
141
142Components interoperate very smoothly. For example, Catalyst
143automatically makes a L</Context> object available to every
144component. Via the context, you can access the request object, share
145data between components, and control the flow of your
146application. Building a Catalyst application feels a lot like snapping
147together toy building blocks, and everything just works.
148
149=item * B<Component Auto-Discovery>
150
151No need to C<use> all of your components. Catalyst automatically finds
152and loads them.
153
154=item * B<Pre-Built Components for Popular Modules>
155
156See L<Catalyst::Model::DBIC::Schema> for L<DBIx::Class>, or
157L<Catalyst::View::TT> for L<Template Toolkit|Template>.
158
159=item * B<Built-in Test Framework>
160
161Catalyst comes with a built-in, lightweight http server and test
162framework, making it easy to test applications from the web browser,
163and the command line.
164
165=item * B<Helper Scripts>
166
167Catalyst provides helper scripts to quickly generate running starter
168code for components and unit tests. Install L<Catalyst::Devel> and see
169L<Catalyst::Helper>.
170
171=back
172
173=head2 Quickstart
174
175Here's how to install Catalyst and get a simple application up and
176running, using the helper scripts described above.
177
178=head3 Install
179
b1a08fe1 180Installation of Catalyst should be straightforward:
181
182 # perl -MCPAN -e 'install Catalyst::Runtime'
cb93c9d7 183 # perl -MCPAN -e 'install Catalyst::Devel'
184
185=head3 Setup
186
187 $ catalyst.pl MyApp
188 # output omitted
189 $ cd MyApp
190 $ script/myapp_create.pl controller Library::Login
191
0c51850e 192=head4 Frank Speiser's Amazon EC2 Catalyst SDK
193
194There are currently two flavors of publicly available Amazon Machine
195Images (AMI) that include all the elements you'd need to begin
196developing in a fully functional Catalyst environment within
197minutes. See
198L<Catalyst::Manual::Installation|Catalyst::Manual::Installation> for
199more details.
200
201
cb93c9d7 202=head3 Run
203
204 $ script/myapp_server.pl
205
206Now visit these locations with your favorite browser or user agent to see
207Catalyst in action:
208
209(NOTE: Although we create a controller here, we don't actually use it.
210Both of these URLs should take you to the welcome page.)
211
212
213=over 4
214
215=item http://localhost:3000/
216
217=item http://localhost:3000/library/login/
218
219=back
220
221=head2 How It Works
222
223Let's see how Catalyst works, by taking a closer look at the components
224and other parts of a Catalyst application.
225
226=head3 Components
227
228Catalyst has an uncommonly flexible component system. You can define as
229many L</Models>, L</Views>, and L</Controllers> as you like. As discussed
230previously, the general idea is that the View is responsible for the
231output of data to the user (typically via a web browser, but a View can
b1a08fe1 232also generate PDFs or e-mails, for example); the Model is responsible
cb93c9d7 233for providing data (typically from a relational database); and the
234Controller is responsible for interacting with the user and deciding
235how user input determines what actions the application takes.
236
237In the world of MVC, there are frequent discussions and disagreements
238about the nature of each element - whether certain types of logic
239belong in the Model or the Controller, etc. Catalyst's flexibility
b1a08fe1 240means that this decision is entirely up to you, the programmer;
cb93c9d7 241Catalyst doesn't enforce anything. See L<Catalyst::Manual::About> for
242a general discussion of these issues.
243
b2aea8fe 244Model, View and Controller components must inherit from L<Catalyst::Model>,
47a79274 245L<Catalyst::View> and L<Catalyst::Controller>, respectively. These, in turn, inherit
b2aea8fe 246from L<Catalyst::Component> which provides a simple class structure and some
247common class methods like C<config> and C<new> (constructor).
cb93c9d7 248
249 package MyApp::Controller::Catalog;
b1a08fe1 250 use Moose;
251 use namespace::autoclean;
cb93c9d7 252
b1a08fe1 253 BEGIN { extends 'Catalyst::Controller' }
cb93c9d7 254
255 __PACKAGE__->config( foo => 'bar' );
256
257 1;
258
259You don't have to C<use> or otherwise register Models, Views, and
260Controllers. Catalyst automatically discovers and instantiates them
261when you call C<setup> in the main application. All you need to do is
262put them in directories named for each Component type. You can use a
263short alias for each one.
264
265=over 4
266
b1a08fe1 267=item * B<MyApp/Model/>
cb93c9d7 268
269=item * B<MyApp/M/>
270
271=item * B<MyApp/View/>
272
273=item * B<MyApp/V/>
274
275=item * B<MyApp/Controller/>
276
277=item * B<MyApp/C/>
278
279=back
280
281In older versions of Catalyst, the recommended practice (and the one
282automatically created by helper scripts) was to name the directories
b1a08fe1 283C<M/>, C<V/>, and C<C/>. Though these still work, they are deprecated
284and we now recommend the use of the full names.
cb93c9d7 285
286=head4 Views
287
288To show how to define views, we'll use an already-existing base class for the
289L<Template Toolkit|Template>, L<Catalyst::View::TT>. All we need to do is
290inherit from this class:
291
292 package MyApp::View::TT;
293
294 use strict;
295 use base 'Catalyst::View::TT';
296
297 1;
298
299(You can also generate this automatically by using the helper script:
300
301 script/myapp_create.pl view TT TT
302
303where the first C<TT> tells the script that the name of the view should
304be C<TT>, and the second that it should be a Template Toolkit view.)
305
306This gives us a process() method and we can now just do
307$c->forward('MyApp::View::TT') to render our templates. The base class
308makes process() implicit, so we don't have to say
309C<$c-E<gt>forward(qw/MyApp::View::TT process/)>.
310
311 sub hello : Global {
312 my ( $self, $c ) = @_;
313 $c->stash->{template} = 'hello.tt';
314 }
315
316 sub end : Private {
317 my ( $self, $c ) = @_;
318 $c->forward( $c->view('TT') );
319 }
320
321You normally render templates at the end of a request, so it's a perfect
322use for the global C<end> action.
323
324In practice, however, you would use a default C<end> action as supplied
325by L<Catalyst::Action::RenderView>.
326
327Also, be sure to put the template under the directory specified in
328C<$c-E<gt>config-E<gt>{root}>, or you'll end up looking at the debug
329screen.
330
331=head4 Models
332
333Models are providers of data. This data could come from anywhere - a
334search engine index, a spreadsheet, the file system - but typically a
335Model represents a database table. The data source does not
336intrinsically have much to do with web applications or Catalyst - it
337could just as easily be used to write an offline report generator or a
338command-line tool.
339
340To show how to define models, again we'll use an already-existing base
341class, this time for L<DBIx::Class>: L<Catalyst::Model::DBIC::Schema>.
342We'll also need L<DBIx::Class::Schema::Loader>.
343
344But first, we need a database.
345
346 -- myapp.sql
347 CREATE TABLE foo (
348 id INTEGER PRIMARY KEY,
349 data TEXT
350 );
351
352 CREATE TABLE bar (
353 id INTEGER PRIMARY KEY,
354 foo INTEGER REFERENCES foo,
355 data TEXT
356 );
357
358 INSERT INTO foo (data) VALUES ('TEST!');
359
9d49ae04 360 % sqlite3 /tmp/myapp.db < myapp.sql
cb93c9d7 361
362Now we can create a DBIC::Schema model for this database.
363
364 script/myapp_create.pl model MyModel DBIC::Schema MySchema create=static 'dbi:SQLite:/tmp/myapp.db'
365
54550e13 366L<DBIx::Class::Schema::Loader> can automatically load table layouts and
4299d9f5 367relationships, and convert them into a static schema definition
368C<MySchema>, which you can edit later.
cb93c9d7 369
370Use the stash to pass data to your templates.
371
372We add the following to MyApp/Controller/Root.pm
373
374 sub view : Global {
375 my ( $self, $c, $id ) = @_;
b1a08fe1 376
cb93c9d7 377 $c->stash->{item} = $c->model('MyModel::Foo')->find($id);
378 }
379
380 1;
b1a08fe1 381
cb93c9d7 382 sub end : Private {
383 my ( $self, $c ) = @_;
b1a08fe1 384
cb93c9d7 385 $c->stash->{template} ||= 'index.tt';
386 $c->forward( $c->view('TT') );
387 }
388
389We then create a new template file "root/index.tt" containing:
390
391 The Id's data is [% item.data %]
392
393Models do not have to be part of your Catalyst application; you
394can always call an outside module that serves as your Model:
395
396 # in a Controller
397 sub list : Local {
398 my ( $self, $c ) = @_;
b1a08fe1 399
cb93c9d7 400 $c->stash->{template} = 'list.tt';
b1a08fe1 401
cb93c9d7 402 use Some::Outside::Database::Module;
403 my @records = Some::Outside::Database::Module->search({
404 artist => 'Led Zeppelin',
405 });
b1a08fe1 406
cb93c9d7 407 $c->stash->{records} = \@records;
408 }
409
410But by using a Model that is part of your Catalyst application, you
411gain several things: you don't have to C<use> each component, Catalyst
412will find and load it automatically at compile-time; you can
413C<forward> to the module, which can only be done to Catalyst
414components. Only Catalyst components can be fetched with
415C<$c-E<gt>model('SomeModel')>.
416
417Happily, since many people have existing Model classes that they
418would like to use with Catalyst (or, conversely, they want to
419write Catalyst models that can be used outside of Catalyst, e.g.
420in a cron job), it's trivial to write a simple component in
421Catalyst that slurps in an outside Model:
422
423 package MyApp::Model::DB;
424 use base qw/Catalyst::Model::DBIC::Schema/;
425 __PACKAGE__->config(
426 schema_class => 'Some::DBIC::Schema',
427 connect_info => ['dbi:SQLite:foo.db', '', '', {AutoCommit=>1}]
428 );
429 1;
430
431and that's it! Now C<Some::DBIC::Schema> is part of your
432Cat app as C<MyApp::Model::DB>.
433
434Within Catalyst, the common approach to writing a model for your
435application is wrapping a generic model (e.g. L<DBIx::Class::Schema>, a
436bunch of XMLs, or anything really) with an object that contains
437configuration data, convenience methods, and so forth. Thus you
438will in effect have two models - a wrapper model that knows something
439about Catalyst and your web application, and a generic model that is
440totally independent of these needs.
441
442Technically, within Catalyst a model is a B<component> - an instance of
443the model's class belonging to the application. It is important to
444stress that the lifetime of these objects is per application, not per
445request.
446
447While the model base class (L<Catalyst::Model>) provides things like
448C<config> to better integrate the model into the application, sometimes
449this is not enough, and the model requires access to C<$c> itself.
450
451Situations where this need might arise include:
452
453=over 4
454
455=item *
456
457Interacting with another model
458
459=item *
460
461Using per-request data to control behavior
462
463=item *
464
465Using plugins from a Model (for example L<Catalyst::Plugin::Cache>).
466
467=back
468
469From a style perspective it's usually considered bad form to make your
470model "too smart" about things - it should worry about business logic
471and leave the integration details to the controllers. If, however, you
472find that it does not make sense at all to use an auxillary controller
473around the model, and the model's need to access C<$c> cannot be
474sidestepped, there exists a power tool called L</ACCEPT_CONTEXT>.
475
476=head4 Controllers
477
478Multiple controllers are a good way to separate logical domains of your
479application.
480
481 package MyApp::Controller::Login;
482
483 use base qw/Catalyst::Controller/;
484
be3349e1 485 sub sign_in : Path("sign-in") { }
cb93c9d7 486 sub new_password : Path("new-password") { }
be3349e1 487 sub sign_out : Path("sign-out") { }
cb93c9d7 488
489 package MyApp::Controller::Catalog;
490
491 use base qw/Catalyst::Controller/;
492
493 sub view : Local { }
494 sub list : Local { }
495
496 package MyApp::Controller::Cart;
497
498 use base qw/Catalyst::Controller/;
499
500 sub add : Local { }
501 sub update : Local { }
502 sub order : Local { }
503
504Note that you can also supply attributes via the Controller's config so
505long as you have at least one attribute on a subref to be exported
506(:Action is commonly used for this) - for example the following is
507equivalent to the same controller above:
508
509 package MyApp::Controller::Login;
510
511 use base qw/Catalyst::Controller/;
512
513 __PACKAGE__->config(
514 actions => {
515 'sign_in' => { Path => 'sign-in' },
516 'new_password' => { Path => 'new-password' },
517 'sign_out' => { Path => 'sign-out' },
518 },
519 );
520
521 sub sign_in : Action { }
522 sub new_password : Action { }
523 sub sign_out : Action { }
524
525=head3 ACCEPT_CONTEXT
526
527Whenever you call $c->component("Foo") you get back an object - the
528instance of the model. If the component supports the C<ACCEPT_CONTEXT>
529method instead of returning the model itself, the return value of C<<
530$model->ACCEPT_CONTEXT( $c ) >> will be used.
531
0cc6ab50 532This means that whenever your model/view/controller needs to talk to
533C<$c> it gets a chance to do this when it's needed.
cb93c9d7 534
535A typical C<ACCEPT_CONTEXT> method will either clone the model and return one
536with the context object set, or it will return a thin wrapper that contains
537C<$c> and delegates to the per-application model object.
538
0cc6ab50 539Generally it's a bad idea to expose the context object (C<$c>) in your
540model or view code. Instead you use the C<ACCEPT_CONTEXT> subroutine
541to grab the bits of the context object that you need, and provide
542accessors to them in the model. This ensures that C<$c> is only in
543scope where it is neaded which reduces maintenance and debugging
544headaches. So, if for example you needed two
545L<Catalyst::Model::DBIC::Schema> models in the same Catalyst model
546code, you might do something like this:
547
548 __PACKAGE__->mk_accessors(qw(model1_schema model2_schema));
549 sub ACCEPT_CONTEXT {
550 my ( $self, $c, @extra_arguments ) = @_;
551 $self = bless({ %$self,
552 model1_schema => $c->model('Model1')->schema,
553 model2_schema => $c->model('Model2')->schema
554 }, ref($self));
555 return $self;
556 }
557
558This effectively treats $self as a B<prototype object> that gets a new
559parameter. C<@extra_arguments> comes from any trailing arguments to
560C<< $c->component( $bah, @extra_arguments ) >> (or C<< $c->model(...)
561>>, C<< $c->view(...) >> etc).
562
563In a subroutine in the model code, we can then do this:
564
565 sub whatever {
566 my ($self) = @_;
567 my $schema1 = $self->model1_schema;
568 my $schema2 = $self->model2_schema;
569 ...
570 }
571
572Note that we still want the Catalyst models to be a thin wrapper
573around classes that will work independently of the Catalyst
574application to promote reusability of code. Here we might just want
575to grab the $c->model('DB')->schema so as to get the connection
576information from the Catalyst application's configuration for example.
577
578The life time of this value is B<per usage>, and not per request. To
579make this per request you can use the following technique:
cb93c9d7 580
581Add a field to C<$c>, like C<my_model_instance>. Then write your
582C<ACCEPT_CONTEXT> method to look like this:
583
584 sub ACCEPT_CONTEXT {
585 my ( $self, $c ) = @_;
586
587 if ( my $per_request = $c->my_model_instance ) {
588 return $per_request;
589 } else {
590 my $new_instance = bless { %$self, c => $c }, ref($self);
591 Scalar::Util::weaken($new_instance->{c}); # or we have a circular reference
592 $c->my_model_instance( $new_instance );
593 return $new_instance;
594 }
595 }
596
0cc6ab50 597For a similar technique to grab a new component instance on each
598request, see L<Catalyst::Component::InstancePerContext>.
599
cb93c9d7 600=head3 Application Class
601
602In addition to the Model, View, and Controller components, there's a
603single class that represents your application itself. This is where you
604configure your application, load plugins, and extend Catalyst.
605
606 package MyApp;
607
608 use strict;
ca7528df 609 use parent qw/Catalyst/;
b411df01 610 use Catalyst qw/-Debug ConfigLoader Static::Simple/;
cb93c9d7 611 MyApp->config(
612 name => 'My Application',
613
614 # You can put anything else you want in here:
615 my_configuration_variable => 'something',
616 );
617 1;
618
619In older versions of Catalyst, the application class was where you put
620global actions. However, as of version 5.66, the recommended practice is
621to place such actions in a special Root controller (see L</Actions>,
622below), to avoid namespace collisions.
623
624=over 4
625
626=item * B<name>
627
628The name of your application.
629
630=back
631
632Optionally, you can specify a B<root> parameter for templates and static
633data. If omitted, Catalyst will try to auto-detect the directory's
634location. You can define as many parameters as you want for plugins or
635whatever you need. You can access them anywhere in your application via
636C<$context-E<gt>config-E<gt>{$param_name}>.
637
638=head3 Context
639
640Catalyst automatically blesses a Context object into your application
641class and makes it available everywhere in your application. Use the
642Context to directly interact with Catalyst and glue your L</Components>
643together. For example, if you need to use the Context from within a
644Template Toolkit template, it's already there:
645
646 <h1>Welcome to [% c.config.name %]!</h1>
647
648As illustrated in our URL-to-Action dispatching example, the Context is
649always the second method parameter, behind the Component object
650reference or class name itself. Previously we called it C<$context> for
651clarity, but most Catalyst developers just call it C<$c>:
652
653 sub hello : Global {
654 my ( $self, $c ) = @_;
655 $c->res->body('Hello World!');
656 }
657
658The Context contains several important objects:
659
660=over 4
661
662=item * L<Catalyst::Request>
663
664 $c->request
665 $c->req # alias
666
667The request object contains all kinds of request-specific information, like
668query parameters, cookies, uploads, headers, and more.
669
670 $c->req->params->{foo};
671 $c->req->cookies->{sessionid};
672 $c->req->headers->content_type;
673 $c->req->base;
674 $c->req->uri_with( { page = $pager->next_page } );
675
676=item * L<Catalyst::Response>
677
678 $c->response
679 $c->res # alias
680
681The response is like the request, but contains just response-specific
682information.
683
684 $c->res->body('Hello World');
685 $c->res->status(404);
686 $c->res->redirect('http://oook.de');
687
709ea2fc 688=item * config
cb93c9d7 689
690 $c->config
691 $c->config->{root};
692 $c->config->{name};
693
694=item * L<Catalyst::Log>
695
696 $c->log
697 $c->log->debug('Something happened');
698 $c->log->info('Something you should know');
699
700=item * B<Stash>
701
702 $c->stash
703 $c->stash->{foo} = 'bar';
704 $c->stash->{baz} = {baz => 'qox'};
705 $c->stash->{fred} = [qw/wilma pebbles/];
706
707and so on.
708
709=back
710
711The last of these, the stash, is a universal hash for sharing data among
712application components. For an example, we return to our 'hello' action:
713
714 sub hello : Global {
715 my ( $self, $c ) = @_;
716 $c->stash->{message} = 'Hello World!';
717 $c->forward('show_message');
718 }
719
720 sub show_message : Private {
721 my ( $self, $c ) = @_;
722 $c->res->body( $c->stash->{message} );
723 }
724
725Note that the stash should be used only for passing data in an
726individual request cycle; it gets cleared at a new request. If you need
727to maintain persistent data, use a session. See
728L<Catalyst::Plugin::Session> for a comprehensive set of
729Catalyst-friendly session-handling tools.
730
731=head3 Actions
732
d6ea2bcb 733You've already seen some examples of actions in this document:
734subroutines with C<:Path> and C<:Local> attributes attached.
735Here, we explain what actions are and how these attributes affect
736what's happening.
737
738When Catalyst processes a webpage request, it looks for actions to
739take that will deal with the incoming request and produce a response
740such as a webpage. You create these actions for your application by
741writing subroutines within your controller and marking them with
742special attributes. The attributes, the namespace, and the function
743name determine when Catalyst will call the subroutine.
744
745These action subroutines call certain functions to say what response
746the webserver will give to the web request. They can also tell
747Catalyst to run other actions on the request (one example of this is
748called forwarding the request; this is discussed later).
749
750Action subroutines must have a special attribute on to show that they
751are actions - as well as marking when to call them, this shows that
752they take a specific set of arguments and behave in a specific way.
753At startup, Catalyst looks for all the actions in controllers,
754registers them and creates L<Catalyst::Action> objects describing
755them. When requests come in, Catalyst chooses which actions should be
756called to handle the request.
757
758(Occasionally, you might use the action objects directly, but in
759general, when we talk about actions, we're talking about the
760subroutines in your application that do things to process a request.)
761
762You can choose one of several attributes for action subroutines; these
763specify which requests are processed by that subroutine. Catalyst
764will look at the URL it is processing, and the actions that it has
765found, and automatically call the actions it finds that match the
766circumstances of the request.
767
caf6e9ce 768The URL (for example http://localhost:3000/foo/bar) consists of two
d6ea2bcb 769parts, the base, describing how to connect to the server
770(http://localhost:3000/ in this example) and the path, which the
771server uses to decide what to return (foo/bar). Please note that the
772trailing slash after the hostname[:port] always belongs to base and
773not to the path. Catalyst uses only the path part when trying to find
774actions to process.
775
776Depending on the type of action used, the URLs may match a combination
777of the controller namespace, the arguments passed to the action
778attribute, and the name of the subroutine.
cb93c9d7 779
780=over 4
781
d6ea2bcb 782=item * B<Controller namespaces>
783
784The namespace is a modified form of the component's class (package)
785name. This modified class name excludes the parts that have a
786pre-defined meaning in Catalyst ("MyApp::Controller" in the above
787example), replaces "::" with "/", and converts the name to lower case.
788See L</Components> for a full explanation of the pre-defined meaning
789of Catalyst component class names.
790
791=item * B<Overriding the namespace>
792
19a5b486 793Note that I<< __PACKAGE__->config->(namespace => ... ) >> can be used to override the
d6ea2bcb 794current namespace when matching. So:
795
796 package MyApp::Controller::Example;
797
798would normally use 'example' as its namespace for matching, but if
799this is specially overridden with
800
19a5b486 801 __PACKAGE__->config( namespace => 'thing' );
d6ea2bcb 802
803it matches using the namespace 'thing' instead.
804
cb93c9d7 805=item * B<Application Wide Actions>
806
d6ea2bcb 807MyApp::Controller::Root, as created by the catalyst.pl script, will
808typically contain actions which are called for the top level of the
809application (e.g. http://localhost:3000/ ):
cb93c9d7 810
811 package MyApp::Controller::Root;
812 use base 'Catalyst::Controller';
f577e42d 813
cb93c9d7 814 # Sets the actions in this controller to be registered with no prefix
815 # so they function identically to actions created in MyApp.pm
f577e42d 816
19a5b486 817 __PACKAGE__->config( namespace => '');
f577e42d 818
4299d9f5 819 sub default : Path {
cb93c9d7 820 my ( $self, $context ) = @_;
4299d9f5 821 $context->response->status(404);
822 $context->response->body('404 not found');
cb93c9d7 823 }
f577e42d 824
cb93c9d7 825 1;
826
d6ea2bcb 827
828The code
829
19a5b486 830 __PACKAGE__->config( namespace => '' );
d6ea2bcb 831
832makes the controller act as if its namespace is empty. As you'll see
f577e42d 833below, an empty namespace makes many of the URL-matching attributes, such
834as :Path and :Local match at the start of the URL path (i.e. the
835application root).
d6ea2bcb 836
cb93c9d7 837=back
838
839=head4 Action types
840
d6ea2bcb 841Catalyst supports several types of actions. These mainly correspond
842to ways of matching a URL to an action subroutine. Internally, these
843matching types are implemented by L<Catalyst::DispatchType>-derived
844classes; the documentation there can be helpful in seeing how they
845work.
846
847They will all attempt to match the start of the path. The remainder
848of the path is passed as arguments.
cb93c9d7 849
850=over 4
851
d6ea2bcb 852=item * Namespace-prefixed (C<:Local>)
853
b1a08fe1 854 package MyApp::Controller::My::Controller;
d6ea2bcb 855 sub foo : Local { }
856
857Matches any URL beginning with> http://localhost:3000/my/controller/foo. The namespace and
858subroutine name together determine the path.
859
0a52c718 860=item * Root-level (C<:Global>)
d6ea2bcb 861
862 package MyApp::Controller::Foo;
d6ea2bcb 863
f577e42d 864 sub bar : Global {
865 my ($self, $c) = @_;
866 $c->res->body(
867 $c->res->body('sub bar in Controller::Foo triggered on a request for '
868 . $c->req->uri));
869 }
d6ea2bcb 870
f577e42d 8711;
d6ea2bcb 872
498f110b 873Matches http://localhost:3000/bar - that is, the action is mapped
70101578 874directly to the method name, ignoring the controller namespace.
d6ea2bcb 875
f577e42d 876C<:Global> always matches from the application root: it is simply
877shorthandfor C<:Path('/methodname')>. C<:Local> is shorthand for
878C<:Path('methodname')>, which takes the controller namespace as described
879above.
880
881Usage of the C<Global> handler is rare in all but very old Catalyst
882applications (e.g. before Catalyst 5.7). The use cases where C<Global>
883used to make sense are now largely replaced by the C<Chained> dispatch
884type, or by empty C<Path> declarations on an controller action. C<Global>
885is still included in Catalyst for backwards compatibility, although
7c8f8c03 886legitimate use-cases for it may still exist.
d6ea2bcb 887
845ef405 888=item * Changing handler behaviour: eating arguments (C<:Args>)
d6ea2bcb 889
890Args is not an action type per se, but an action modifier - it adds a
891match restriction to any action it's provided to, additionally
892requiring as many path parts as are specified for the action to be
893matched. For example, in MyApp::Controller::Foo,
894
895 sub bar :Local
896
897would match any URL starting /foo/bar. To restrict this you can do
898
899 sub bar :Local :Args(1)
900
901to only match URLs starting /foo/bar/* - with one additional path
902element required after 'bar'.
903
b1a08fe1 904NOTE that adding C<:Args(0)> and missing out :Args completely are B<not>
845ef405 905the same thing.
906
b1a08fe1 907C<:Args(0)> means that no arguments are taken. Thus, the URL and path must
845ef405 908match precisely.
909
b1a08fe1 910No :Args at all means that B<any number> of arguments are taken. Thus, any
0a52c718 911URL that B<starts with> the controller's path will match. Obviously, this means
912you cannot chain from an action that does not specify args, as the next action
913in the chain will be swallowed as an arg to the first!
845ef405 914
915
d6ea2bcb 916=item * Literal match (C<:Path>)
917
918C<Path> actions match things starting with a precise specified path,
919and nothing else.
920
921C<Path> actions without a leading forward slash match a specified path
922relative to their current namespace. This example matches URLs
923starting http://localhost:3000/my/controller/foo/bar :
cb93c9d7 924
925 package MyApp::Controller::My::Controller;
926 sub bar : Path('foo/bar') { }
927
d6ea2bcb 928C<Path> actions B<with> a leading slash ignore their namespace, and
929match from the start of the URL path. Example:
cb93c9d7 930
931 package MyApp::Controller::My::Controller;
932 sub bar : Path('/foo/bar') { }
933
d6ea2bcb 934This matches URLs beginning http://localhost:3000/foo/bar.
935
936Empty C<Path> definitions match on the namespace only, exactly like
937C<:Global>.
cb93c9d7 938
939 package MyApp::Controller::My::Controller;
940 sub bar : Path { }
941
d6ea2bcb 942The above code matches http://localhost:3000/my/controller.
943
944Actions with the C<:Local> attribute are similarly equivalent to
945C<:Path('action_name')>:
cb93c9d7 946
b1a08fe1 947 sub foo : Local { }
cb93c9d7 948
b1a08fe1 949is equivalent to
d6ea2bcb 950
951 sub foo : Path('foo') { }
952
953=item * Pattern-match (C<:Regex> and C<:LocalRegex>)
b1a08fe1 954
d6ea2bcb 955 package MyApp::Controller::My::Controller;
cb93c9d7 956 sub bar : Regex('^item(\d+)/order(\d+)$') { }
957
d6ea2bcb 958This matches any URL that matches the pattern in the action key, e.g.
cb93c9d7 959http://localhost:3000/item23/order42. The '' around the regexp is
960optional, but perltidy likes it. :)
961
d6ea2bcb 962C<:Regex> matches act globally, i.e. without reference to the namespace
963from which they are called. So the above will B<not> match
964http://localhost:3000/my/controller/item23/order42 - use a
965C<:LocalRegex> action instead.
cb93c9d7 966
d6ea2bcb 967 package MyApp::Controller::My::Controller;
cb93c9d7 968 sub bar : LocalRegex('^widget(\d+)$') { }
969
d6ea2bcb 970C<:LocalRegex> actions act locally, i.e. the namespace is matched
971first. The above example would match urls like
972http://localhost:3000/my/controller/widget23.
cb93c9d7 973
d6ea2bcb 974If you omit the "C<^>" from either sort of regex, then it will match any depth
975from the base path:
cb93c9d7 976
977 package MyApp::Controller::Catalog;
978 sub bar : LocalRegex('widget(\d+)$') { }
979
d6ea2bcb 980This differs from the previous example in that it will match
981http://localhost:3000/my/controller/foo/widget23 - and a number of
982other paths.
cb93c9d7 983
d6ea2bcb 984For both C<:LocalRegex> and C<:Regex> actions, if you use capturing
985parentheses to extract values within the matching URL, those values
986are available in the C<$c-E<gt>req-E<gt>captures> array. In the above
987example, "widget23" would capture "23" in the above example, and
988C<$c-E<gt>req-E<gt>captures-E<gt>[0]> would be "23". If you want to
989pass arguments at the end of your URL, you must use regex action
990keys. See L</URL Path Handling> below.
cb93c9d7 991
d6ea2bcb 992=item * Chained handlers (C<:Chained>)
cb93c9d7 993
994Catalyst also provides a method to build and dispatch chains of actions,
995like
996
997 sub catalog : Chained : CaptureArgs(1) {
998 my ( $self, $c, $arg ) = @_;
999 ...
1000 }
1001
1002 sub item : Chained('catalog') : Args(1) {
1003 my ( $self, $c, $arg ) = @_;
1004 ...
1005 }
1006
d6ea2bcb 1007to handle a C</catalog/*/item/*> path. Matching actions are called
1008one after another - C<catalog()> gets called and handed one path
1009element, then C<item()> gets called with another one. For further
1010information about this dispatch type, please see
1011L<Catalyst::DispatchType::Chained>.
cb93c9d7 1012
1013=item * B<Private>
1014
1015 sub foo : Private { }
1016
d6ea2bcb 1017This will never match a URL - it provides a private action which can
1018be called programmatically from within Catalyst, but is never called
1019automatically due to the URL being requested.
1020
1021Catalyst's C<:Private> attribute is exclusive and doesn't work with other
1022attributes (so will not work combined with C<:Path> or C<:Chained>
1023attributes, for instance).
1024
1025Private actions can only be executed explicitly from inside a Catalyst
1026application. You might do this in your controllers by calling
1027catalyst methods such as C<forward> or C<detach> to fire them:
cb93c9d7 1028
1029 $c->forward('foo');
09f13e1d 1030 # or
1031 $c->detach('foo');
cb93c9d7 1032
d6ea2bcb 1033See L</Flow Control> for a full explanation of how you can pass
1034requests on to other actions. Note that, as discussed there, when
1035forwarding from another component, you must use the absolute path to
1036the method, so that a private C<bar> method in your
1037C<MyApp::Controller::Catalog::Order::Process> controller must, if
1038called from elsewhere, be reached with
cb93c9d7 1039C<$c-E<gt>forward('/catalog/order/process/bar')>.
1040
cb93c9d7 1041=back
1042
d6ea2bcb 1043B<Note:> After seeing these examples, you probably wonder what the
1044point is of defining subroutine names for regex and path
1045actions. However, every public action is also a private one with a
1046path corresponding to its namespace and subroutine name, so you have
1047one unified way of addressing components in your C<forward>s.
1048
1049=head4 Built-in special actions
cb93c9d7 1050
d6ea2bcb 1051If present, the special actions C< index >, C< auto >, C<begin>,
1052C<end> and C< default > are called at certain points in the request
1053cycle.
cb93c9d7 1054
1055In response to specific application states, Catalyst will automatically
d6ea2bcb 1056call these built-in actions in your application class:
cb93c9d7 1057
1058=over 4
1059
4299d9f5 1060=item * B<default : Path>
cb93c9d7 1061
d6ea2bcb 1062This is called when no other action matches. It could be used, for
1063example, for displaying a generic frontpage for the main app, or an
1064error page for individual controllers. B<Note>: in older Catalyst
1065applications you will see C<default : Private> which is roughly
1066speaking equivalent.
cb93c9d7 1067
cb93c9d7 1068
4299d9f5 1069=item * B<index : Path : Args (0) >
cb93c9d7 1070
4299d9f5 1071C<index> is much like C<default> except that it takes no arguments and
1072it is weighted slightly higher in the matching process. It is useful
1073as a static entry point to a controller, e.g. to have a static welcome
1074page. Note that it's also weighted higher than Path. Actually the sub
1075name C<index> can be called anything you want. The sub attributes are
955bdf3d 1076what determines the behaviour of the action. B<Note>: in older
1077Catalyst applications, you will see C<index : Private> used, which is
1078roughly speaking equivalent.
cb93c9d7 1079
1080=item * B<begin : Private>
1081
d6ea2bcb 1082Called at the beginning of a request, once the controller that will
1083run has been identified, but before any URL-matching actions are
1084called. Catalyst will call the C<begin> function in the controller
1085which contains the action matching the URL.
cb93c9d7 1086
1087=item * B<end : Private>
1088
d6ea2bcb 1089Called at the end of a request, after all URL-matching actions are called.
1090Catalyst will call the C<end> function in the controller
1091which contains the action matching the URL.
1092
1093=item * B<auto : Private>
1094
1095In addition to the normal built-in actions, you have a special action
1096for making chains, C<auto>. C<auto> actions will be run after any
1097C<begin>, but before your URL-matching action is processed. Unlike the other
1098built-ins, multiple C<auto> actions can be called; they will be
1099called in turn, starting with the application class and going through
1100to the most specific class.
cb93c9d7 1101
1102=back
1103
1104=head4 Built-in actions in controllers/autochaining
1105
f76813a2 1106 package MyApp::Controller::Foo;
cb93c9d7 1107 sub begin : Private { }
4299d9f5 1108 sub default : Path { }
d6ea2bcb 1109 sub end : Path { }
1110
1111You can define built-in actions within your controllers as well as on
1112your application class. In other words, for each of the three built-in
1113actions above, only one will be run in any request cycle. Thus, if
1114C<MyApp::Controller::Catalog::begin> exists, it will be run in place
1115of C<MyApp::begin> if you're in the C<catalog> namespace, and
1116C<MyApp::Controller::Catalog::Order::begin> would override this in
cb93c9d7 1117turn.
1118
d6ea2bcb 1119 sub auto : Private { }
cb93c9d7 1120
d6ea2bcb 1121C<auto>, however, doesn't override like this: providing they exist,
a696baf6 1122C<MyApp::Controller::Root::auto>, C<MyApp::Controller::Catalog::auto> and
d6ea2bcb 1123C<MyApp::Catalog::Order::auto> would be called in turn.
cb93c9d7 1124
1125Here are some examples of the order in which the various built-ins
1126would be called:
1127
1128=over 4
1129
1130=item for a request for C</foo/foo>
1131
f76813a2 1132 MyApp::Controller::Foo::auto
cb93c9d7 1133 MyApp::Controller::Foo::default # in the absence of MyApp::Controller::Foo::Foo
f76813a2 1134 MyApp::Controller::Foo::end
cb93c9d7 1135
1136=item for a request for C</foo/bar/foo>
1137
1138 MyApp::Controller::Foo::Bar::begin
cb93c9d7 1139 MyApp::Controller::Foo::auto
1140 MyApp::Controller::Foo::Bar::auto
1141 MyApp::Controller::Foo::Bar::default # for MyApp::Controller::Foo::Bar::foo
1142 MyApp::Controller::Foo::Bar::end
1143
1144=back
1145
1146The C<auto> action is also distinguished by the fact that you can break
1147out of the processing chain by returning 0. If an C<auto> action returns
11480, any remaining actions will be skipped, except for C<end>. So, for the
1149request above, if the first auto returns false, the chain would look
1150like this:
1151
1152=over 4
1153
1154=item for a request for C</foo/bar/foo> where first C<auto> returns
1155false
1156
1157 MyApp::Controller::Foo::Bar::begin
d6ea2bcb 1158 MyApp::Controller::Foo::auto # returns false, skips some calls:
1159 # MyApp::Controller::Foo::Bar::auto - never called
1160 # MyApp::Controller::Foo::Bar::foo - never called
cb93c9d7 1161 MyApp::Controller::Foo::Bar::end
1162
d6ea2bcb 1163You can also C<die> in the auto action; in that case, the request will
1164go straight to the finalize stage, without processing further
1165actions. So in the above example, C<MyApp::Controller::Foo::Bar::end>
1166is skipped as well.
1167
cb93c9d7 1168=back
1169
d6ea2bcb 1170An example of why one might use C<auto> is an authentication action:
1171you could set up a C<auto> action to handle authentication in your
cb93c9d7 1172application class (which will always be called first), and if
d6ea2bcb 1173authentication fails, returning 0 would skip any remaining methods for
1174that URL.
cb93c9d7 1175
1176B<Note:> Looking at it another way, C<auto> actions have to return a
b1a08fe1 1177true value to continue processing!
cb93c9d7 1178
1179=head4 URL Path Handling
1180
d6ea2bcb 1181You can pass arguments as part of the URL path, separated with forward
1182slashes (/). If the action is a Regex or LocalRegex, the '$' anchor
1183must be used. For example, suppose you want to handle
1184C</foo/$bar/$baz>, where C<$bar> and C<$baz> may vary:
cb93c9d7 1185
1186 sub foo : Regex('^foo$') { my ($self, $context, $bar, $baz) = @_; }
1187
1188But what if you also defined actions for C</foo/boo> and C</foo/boo/hoo>?
1189
1190 sub boo : Path('foo/boo') { .. }
1191 sub hoo : Path('foo/boo/hoo') { .. }
1192
d6ea2bcb 1193Catalyst matches actions in most specific to least specific order - that is, whatever matches the most pieces of the path wins:
cb93c9d7 1194
1195 /foo/boo/hoo
1196 /foo/boo
1197 /foo # might be /foo/bar/baz but won't be /foo/boo/hoo
1198
1199So Catalyst would never mistakenly dispatch the first two URLs to the
1200'^foo$' action.
1201
b1a08fe1 1202If a Regex or LocalRegex action doesn't use the '$' anchor, the action will
1203still match a URL containing arguments; however the arguments won't be
d6ea2bcb 1204available via C<@_>, because the Regex will 'eat' them.
1205
1206Beware! If you write two matchers, that match the same path, with the
1207same specificity (that is, they match the same quantity of the path),
1208there's no guarantee which will actually get called. Non-regex
1209matchers get tried first, followed by regex ones, but if you have, for
1210instance:
1211
1212 package MyApp::Controller::Root;
1213
1214 sub match1 :Path('/a/b') { }
1215
1216 package MyApp::Controller::A;
1217
1218 sub b :Local { } # Matches /a/b
1219
1220then Catalyst will call the one it finds first. In summary, Don't Do
1221This.
cb93c9d7 1222
d6ea2bcb 1223=head4 Query Parameter Processing
cb93c9d7 1224
1225Parameters passed in the URL query string are handled with methods in
1226the L<Catalyst::Request> class. The C<param> method is functionally
1227equivalent to the C<param> method of C<CGI.pm> and can be used in
1228modules that require this.
1229
1230 # http://localhost:3000/catalog/view/?category=hardware&page=3
1231 my $category = $c->req->param('category');
1232 my $current_page = $c->req->param('page') || 1;
1233
1234 # multiple values for single parameter name
b1a08fe1 1235 my @values = $c->req->param('scrolling_list');
cb93c9d7 1236
1237 # DFV requires a CGI.pm-like input hash
1238 my $results = Data::FormValidator->check($c->req->params, \%dfv_profile);
1239
1240=head3 Flow Control
1241
1242You control the application flow with the C<forward> method, which
1243accepts the key of an action to execute. This can be an action in the
1244same or another Catalyst controller, or a Class name, optionally
1245followed by a method name. After a C<forward>, the control flow will
1246return to the method from which the C<forward> was issued.
1247
1248A C<forward> is similar to a method call. The main differences are that
1249it wraps the call in an C<eval> to allow exception handling; it
1250automatically passes along the context object (C<$c> or C<$context>);
1251and it allows profiling of each call (displayed in the log with
1252debugging enabled).
1253
1254 sub hello : Global {
1255 my ( $self, $c ) = @_;
1256 $c->stash->{message} = 'Hello World!';
1257 $c->forward('check_message'); # $c is automatically included
1258 }
1259
1260 sub check_message : Private {
1261 my ( $self, $c ) = @_;
1262 return unless $c->stash->{message};
1263 $c->forward('show_message');
1264 }
1265
1266 sub show_message : Private {
1267 my ( $self, $c ) = @_;
1268 $c->res->body( $c->stash->{message} );
1269 }
1270
1271A C<forward> does not create a new request, so your request object
1272(C<$c-E<gt>req>) will remain unchanged. This is a key difference between
1273using C<forward> and issuing a redirect.
1274
1275You can pass new arguments to a C<forward> by adding them
1276in an anonymous array. In this case C<$c-E<gt>req-E<gt>args>
1277will be changed for the duration of the C<forward> only; upon
1278return, the original value of C<$c-E<gt>req-E<gt>args> will
1279be reset.
1280
1281 sub hello : Global {
1282 my ( $self, $c ) = @_;
1283 $c->stash->{message} = 'Hello World!';
1284 $c->forward('check_message',[qw/test1/]);
1285 # now $c->req->args is back to what it was before
1286 }
1287
eecdf6ee 1288 sub check_message : Action {
1289 my ( $self, $c, $first_argument ) = @_;
1290 my $also_first_argument = $c->req->args->[0]; # now = 'test1'
cb93c9d7 1291 # do something...
1292 }
1293
1294As you can see from these examples, you can just use the method name as
1295long as you are referring to methods in the same controller. If you want
1296to forward to a method in another controller, or the main application,
1297you will have to refer to the method by absolute path.
1298
1299 $c->forward('/my/controller/action');
1300 $c->forward('/default'); # calls default in main application
1301
eecdf6ee 1302You can also forward to classes and methods.
08cb655f 1303
cb93c9d7 1304 sub hello : Global {
1305 my ( $self, $c ) = @_;
eecdf6ee 1306 $c->forward(qw/MyApp::View:Hello say_hello/);
cb93c9d7 1307 }
1308
1309 sub bye : Global {
1310 my ( $self, $c ) = @_;
1311 $c->forward('MyApp::Model::Hello'); # no method: will try 'process'
1312 }
1313
eecdf6ee 1314 package MyApp::View::Hello;
cb93c9d7 1315
1316 sub say_hello {
1317 my ( $self, $c ) = @_;
1318 $c->res->body('Hello World!');
1319 }
1320
1321 sub process {
1322 my ( $self, $c ) = @_;
1323 $c->res->body('Goodbye World!');
1324 }
1325
eecdf6ee 1326This mechanism is used by L<Catalyst::Action::RenderView> to forward
1327to the C<process> method in a view class.
1328
1329It should be noted that whilst forward is useful, it is not the only way
1330of calling other code in Catalyst. Forward just gives you stats in the debug
1331screen, wraps the code you're calling in an exception handler and localises
1332C<< $c->request->args >>.
1333
1334If you don't want or need these features then it's perfectly acceptable
1335(and faster) to do something like this:
1336
e8556dab 1337 sub hello : Global {
1338 my ( $self, $c ) = @_;
1339 $c->stash->{message} = 'Hello World!';
1340 $self->check_message( $c, 'test1' );
1341 }
1342
1343 sub check_message {
1344 my ( $self, $c, $first_argument ) = @_;
1345 # do something...
1346 }
eecdf6ee 1347
cb93c9d7 1348Note that C<forward> returns to the calling action and continues
1349processing after the action finishes. If you want all further processing
1350in the calling action to stop, use C<detach> instead, which will execute
1351the C<detach>ed action and not return to the calling sub. In both cases,
1352Catalyst will automatically try to call process() if you omit the
1353method.
1354
cb93c9d7 1355=head3 Testing
1356
1357Catalyst has a built-in http server for testing or local
1358deployment. (Later, you can easily use a more powerful server, for
1359example Apache/mod_perl or FastCGI, in a production environment.)
1360
1361Start your application on the command line...
1362
1363 script/myapp_server.pl
1364
1365...then visit http://localhost:3000/ in a browser to view the output.
1366
1367You can also do it all from the command line:
1368
1369 script/myapp_test.pl http://localhost/
1370
1371Catalyst has a number of tools for actual regression testing of
1372applications. The helper scripts will automatically generate basic tests
1373that can be extended as you develop your project. To write your own
1374comprehensive test scripts, L<Test::WWW::Mechanize::Catalyst> is an
1375invaluable tool.
1376
1377For more testing ideas, see L<Catalyst::Manual::Tutorial::Testing>.
1378
1379Have fun!
1380
1381=head1 SEE ALSO
1382
1383=over 4
1384
1385=item * L<Catalyst::Manual::About>
1386
1387=item * L<Catalyst::Manual::Tutorial>
1388
1389=item * L<Catalyst>
1390
1391=back
1392
1393=head1 SUPPORT
1394
1395IRC:
1396
1397 Join #catalyst on irc.perl.org.
1398 Join #catalyst-dev on irc.perl.org to help with development.
1399
1400Mailing lists:
1401
392906f2 1402 http://lists.scsys.co.uk/mailman/listinfo/catalyst
1403 http://lists.scsys.co.uk/mailman/listinfo/catalyst-dev
cb93c9d7 1404
fed95b6c 1405Wiki:
1406
1407 http://dev.catalystframework.org/wiki
1408
1409FAQ:
1410
1411 http://dev.catalystframework.org/wiki/faq
1412
bbddff00 1413=head1 AUTHORS
cb93c9d7 1414
bbddff00 1415Catalyst Contributors, see Catalyst.pm
cb93c9d7 1416
1417=head1 COPYRIGHT
1418
bbddff00 1419This library is free software. You can redistribute it and/or modify it under
1420the same terms as Perl itself.
b1a08fe1 1421
1422=cut