views:

34

answers:

1

Hi, in a struts application, I have a filter that forces certain pages to be accessed only over https via redirection. I'm thinking in porting it to grails so my question is: In the this environment, is there a "grails" way to implement such filter or is it similar/the same as I did ? Thanks

+1  A: 

The Spring Security core plugin has support for this. See section 10.7 ("Channel security") at http://burtbeckwith.github.com/grails-spring-security-core/docs/manual/

Burt Beckwith