Integrating Play framework 2.0 and Spring framewor

2019-03-11 03:52发布

I have developed a Spring/JPA application: the service, repository and domain layers are nearing completion.

The only layer that is missing is the web layer. I am considering using Playframework 2.0 for the web layer but I am not sure whether I can inject/use spring beans in my Playframework 2.0 classes.

Is this possible? If so how?

5条回答
啃猪蹄的小仙女
2楼-- · 2019-03-11 04:27
男人必须洒脱
3楼-- · 2019-03-11 04:30

Alex.p is right there is support for spring in PlayFramework

Have a look here : http://typesafe.com/blog/announcing-play-framework-21-the-high-velocit

and on example here : https://github.com/guillaumebort/play20-spring-demo

Cheers

I just tested it on my project it works but on playframework 2.1 in 2.0 it didn't work.

查看更多
Bombasti
4楼-- · 2019-03-11 04:37

There's already support for the Spring IoC container in Play. It's just a matter of editing the application.conf file as mentioned in the linked to article.

Ignore the above see comment: it seems that this was dropped in playframework 2.0.

查看更多
Emotional °昔
6楼-- · 2019-03-11 04:50

Here is a another way of injecting beans using Spring. Standard annotations are used. No plugin is required.

https://github.com/huntc/play-spring

查看更多
登录 后发表回答