无法实现SecureSocial自定义TemplatesPlugin playFramework

时间:2013-05-28 13:15:51

标签: playframework-2.0 securesocial

我试图为SecureSocial模块实现自定义视图 我做了以下(它是一个java项目)

包服务中的

已创建文件CustomTemplate.scala

我将代码从http://securesocial.ws/guide/views-customization.html复制粘贴到该类 我已将类名从MyViews更改为CustomTemplate 从views.custom.html.login(form,msg)返回getLogin页面到views.html.custom.login(form,msg)

登录页面是来自github源代码的完整复制粘贴

现在出现问题  1.未找到:type TemplatesPlugin - >扩展后添加了securesocial.controllers  2.添加了页面provider.scala.html和signUp.scala.html  3.未找到:输入RequestHeader - >在登录页面中将(implicit request: RequestHeader)更改为(implicit request: play.api.mvc.RequestHeader)  4.story我现在得到type mismatch; found : play.api.data.Form[securesocial.controllers.Registration.RegistrationInfo] required: play.data.Form[securesocial.controllers.Registration.RegistrationInfo] 通过在login.page

中添加play.api.data.Form来解决

这一直持续到我添加了所有页面 现在我得到以下

ambiguous implicit values: both method requestHeader in object PlayMagicForJava of type => play.api.mvc.RequestHeader and value request of type play.api.mvc.RequestHeader match expected type play.api.mvc.RequestHeader 

任何想法如何进行?

0 个答案:

没有答案