Sometime it's necessary to extends a framework. Sometimes it's necessary to hook into the request/response lifecycle, for example for a parameter binding or to write a security module. How could this be done in the playframework?
|
feedback
|
|
There are two ways to extend play. First you can write your own module. This is described in detail here. This is useful if you want provide a library such as iText or provide a special authentication mechanism. The second way is to write a
The number defines the order in which the plugins are called. I recommend to use ids > 1000. If you want it to load before a framework plugin, look here (The ids are valid since 1.1.1). That's it. To get a feeling of what you can do with a Plugin see the javadoc. You can hook into:
Unfortunately the javadoc documentation is minimal, but don't hesitate to look into the code of the playframework itself. It's easy to understand and gives you good ideas. | |||||||||||||
feedback
|