| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@page import="org.springframework.context.ApplicationContext"%>
- <%@page import="org.springframework.web.context.support.WebApplicationContextUtils"%>
- <%@page import="com.mossle.core.jdbc.DataSourceService"%>
- <%
- ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(application);
- DataSourceService dataSourceService = (DataSourceService) ctx.getBean("dataSourceService");
- if (request.getParameter("toggle") != null) {
- if (dataSourceService.isLog4jdbcEnabled()) {
- dataSourceService.disableLog4jdbc();
- } else {
- dataSourceService.enableLog4jdbc();
- }
- response.sendRedirect("log4jdbc.jsp");
- }
- pageContext.setAttribute("dataSourceService", dataSourceService);
- %>
- <html>
- <head>
- <meta charset="utf-8">
- <title>log4jdbc</title>
- <style>
- tbody tr:nth-child(odd) td,
- tbody tr:nth-child(odd) th {
- background-color: #f9f9f9;
- }
- </style>
- </head>
- <body>
- <table border="1">
- <tbody>
- <tr>
- <td>状态</td>
- <td>${dataSourceService.log4jdbcEnabled}</td>
- <td><button onclick="location.href='log4jdbc.jsp?toggle=true'">${dataSourceService.log4jdbcEnabled ? '禁用' : '启用'}</button></td>
- </tr>
- </tbody>
- </table>
- </body>
- </html>
|