📄 aopintroductionpointcut.jsp
字号:
<%@ taglib uri="/webconsole" prefix="jb" %>
<%@ page import="org.jboss.aop.*,java.util.*,
org.jboss.aop.introduction.InterfaceIntroduction"%>
<jb:mbean id="server" mbean='jboss.system:type=Server' intf="org.jboss.system.server.ServerImplMBean" />
<jb:mbean id="serverInfo" mbean='jboss.system:type=ServerInfo' intf="org.jboss.system.server.ServerInfoMBean" />
<jb:mbean id="serverConfig" mbean='jboss.system:type=ServerConfig' intf="org.jboss.system.server.ServerConfigImplMBean" />
<%
String myUrl = response.encodeURL(request.getRequestURI() + "?" + request.getQueryString());
%>
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JBoss Management Console - AOP Pointcuts</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link
</head>
<link rel="StyleSheet" href="css/jboss.css" type="text/css"/>
<body>
<!-- header begin -->
<img src="images/logo.gif" alt="JBoss" id="logo" width="226" height="105" />
<div id="header">
</div>
<div id="navigation_bar">
</div>
<!-- header end -->
<%
String name = request.getParameter("pointcut");
InterfaceIntroduction introduction = AspectManager.instance().getInterfaceIntroduction(name);
%>
<hr class="hide"/>
<center> <h4 style="text-align: center"><%=name%></h4>
<div id="content">
<div class="content_block" style="width: 100%">
<h3>Introduction Pointcut</h3>
<p> </p>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="95%" align="center" id="AutoNumber1">
<tr>
<td width="50%" align="center" colspan="2">
<p align="left"><font size="1"><b>Class Expression: </b><%=introduction.getClassExpr()%></font></p>
</td>
</tr>
<%
Iterator mixins = introduction.getMixins().iterator();
while (mixins.hasNext()) {
InterfaceIntroduction.Mixin mixin = (InterfaceIntroduction.Mixin)mixins.next();
String[] interfaces = mixin.getInterfaces();
String initializer = (mixin.getConstruction() == null) ? ("new " + mixin.getClassName() + "()") : mixin.getConstruction();
%>
<tr>
<td>
<p align="left"><h4>Mixin Class</h4></p>
<p align="left"><font size="1"><%=mixin.getClassName()%></font></p>
<p align="left"><h4>Mixin Initializer</h4></p>
<p align="left"><font size="1"><%=initializer%></font></p>
</td>
<td>
<p align="left"><h4>Interfaces</h4></p>
<%
for (int j = 0; j < interfaces.length; j++) {
%>
<p align="left"><font size="1"><%=interfaces[j]%></font></p>
<% } %>
</td>
</tr>
<% } %>
<%
String[] interfaces = introduction.getInterfaces();
if (interfaces != null && interfaces.length > 0) {
%>
<tr>
<td colspan="2">
<p align="left"><h4>Other Interfaces</h4></p>
<%
for (int j = 0; j < interfaces.length; j++) {
%>
<p align="left"><font size="1"><%=interfaces[j]%></font></p>
<% } %>
</td>
</tr>
<% }%>
</table>
<p> </p>
<p> </p>
<p align="center"> <a href="<%=myUrl%>">Refresh</a></p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div class="spacer"><hr/></div>
</div>
</center>
<!-- content end -->
<hr class="hide"/>
<!-- footer begin -->
<div id="footer">
<div id="credits">JBoss
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -