Play is a managed environment. It loads, reloads and executes your
code. It's mainly based on the concept of HTTP requests (an HTTP
request = a play invocation) and allows asynchronous tasks using Jobs
(A job = a play invocation).
So you can't use spring to rebuild your own framework inside of play
and just hope that all will go well. If you want really build a spring
based application then just use spring. Otherwise try to think your
application in the play way (HTTP requests and aynschronous Jobs) and
all will be fine.
> --
> You received this message because you are subscribed to the Google Groups
> "play-framework" group.
> To post to this group, send email to play-fr...@googlegroups.com.
> To unsubscribe from this group, send email to
> play-framewor...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/play-framework?hl=en.
>
Ok well,
Play is a managed environment. It loads, reloads and executes your
code. It's mainly based on the concept of HTTP requests (an HTTP
request = a play invocation) and allows asynchronous tasks using Jobs
(A job = a play invocation).
So you can't use spring to rebuild your own framework inside of play
and just hope that all will go well. If you want really build a spring
based application then just use spring. Otherwise try to think your
application in the play way (HTTP requests and aynschronous Jobs) and
all will be fine.