With SpringSide’s development framework, we can configure a common footer and header for all pages. If you want a page to be displayed separately without footer and header, then you can do it under WEB-INF Configure it in the decorators.xml file under views, as follows:
<?xml version="1.0" encoding="UTF-8"?><decorators defaultdir="/WEB-INF/layouts/"> <excludes> <pattern>/static/*</pattern> <pattern>/api/*</pattern> <pattern>/login</pattern> </excludes> <decorator name="default" page="default.jsp"> <pattern>/*</pattern> </decorator></decorators>
The original page effect is as follows, with public footer and header: