Spring Security form login styling without JSP -
i have spring security application form-login:
<security:http> <security:form-login ... /> </security:http> the login pages working me, i'm getting complaints lack of minimum amount of styling. understand styling can added through few jsp pages, i'm wondering if possible somehow configure css want use on whatever bean spring instantiates generating on-the-fly login page.
the default login page generated in
org.springframework.security.web.authentication.ui.defaultloginpagegeneratingfilter class , basic html without css classes. create own page generator filter , include in filter chain.
but seems more overkill simple creating own login page/form.
Comments
Post a Comment