| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@page import="java.util.List"%>
- <%@page import="java.util.Map"%>
- <%@page import="org.springframework.context.ApplicationContext"%>
- <%@page import="org.springframework.web.context.support.WebApplicationContextUtils"%>
- <%@page import="org.springframework.security.access.ConfigAttribute"%>
- <%@page import="org.springframework.security.access.method.MethodSecurityMetadataSource"%>
- <%@page import="org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource"%>
- <%@page import="com.mossle.core.util.ReflectUtils"%>
- <%
- ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(application);
- DelegatingMethodSecurityMetadataSource delegatingMethodSecurityMetadataSource =
- (DelegatingMethodSecurityMetadataSource) ctx.getBean("org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource#0");
- List<MethodSecurityMetadataSource> methodSecurityMetadataSources = delegatingMethodSecurityMetadataSource.getMethodSecurityMetadataSources();
- %>
- <html>
- <head>
- <meta charset="utf-8">
- <title>auth-method</title>
- <style>
- tbody tr:nth-child(odd) td,
- tbody tr:nth-child(odd) th {
- background-color: #f9f9f9;
- }
- </style>
- </head>
- <body>
- <table border="1" width="100%">
- <thead>
- <tr>
- <th>url</th>
- <th>perm</th>
- </tr>
- </thead>
- <tbody>
- <%
- for (MethodSecurityMetadataSource methodSecurityMetadataSource : methodSecurityMetadataSources) {
- pageContext.setAttribute("methodSecurityMetadataSource", methodSecurityMetadataSource);
- Map<Object, List<ConfigAttribute>> map =
- (Map<Object, List<ConfigAttribute>>) ReflectUtils.getFieldValue(methodSecurityMetadataSource, "methodMap");
- for (Map.Entry<Object, List<ConfigAttribute>> entry : map.entrySet()) {
- pageContext.setAttribute("entry", entry);
- %>
- <tr>
- <td>${entry.key}</td>
- <td>${entry.value}</td>
- </tr>
- <%
- }
- }
- %>
- </tbody>
- </table>
- </body>
- </html>
|