有没有可能在GWT中集成SpringSecurity?
我想知道GWT是否可以与SpringSecurity交互。我想了解客户端和服务器之间的交互。
发布于 2011-07-26 12:09:21
是的你可以。
这里有几个教程
http://seewah.blogspot.com/2009/02/gwt-and-spring-security.html
http://www.javacodegeeks.com/2010/12/securing-gwt-apps-with-spring-security.html
你可以通过一个快速的谷歌找到更多。
发布于 2010-12-24 05:29:58
是的,它可以。将所有与安全性相关的东西都放在服务器外观后面,放在属于它的地方,而放在基本上与GWT本身无关的地方。在客户端,您只需要从用户那里检索用户名和密码,就可以将它们发送到服务器。
https://stackoverflow.com/questions/4519905
复制相似问题