LogoutController.groovy
上传用户:steveyhw
上传日期:2019-05-13
资源大小:307k
文件大小:0k
源码类别:

PlugIns编程

开发平台:

Java

  1. /**
  2.  * Logout Controller (Example)
  3.  * @author generated by plugin script
  4.  */
  5. class LogoutController {
  6.   def index = {
  7.     /* ---- put your codes here ----  */
  8.     
  9.     redirect(uri:"/j_acegi_logout")
  10.     render(text:"")
  11.   }
  12. }