?? topicsubscriptions.jsp
字號:
<%@ page import="java.net.URLEncoder,
org.jboss.mq.*,
org.jboss.mq.server.*,
java.util.*,
java.text.DateFormat"
%>
<%@ taglib uri="/webconsole" prefix="jb" %>
<jb:mbean id="topic" intf="org.jboss.mq.server.jmx.TopicMBean"/>
<%
String objParameter = "&ObjectName=" + URLEncoder.encode(request.getParameter("ObjectName"));
String myUrl = response.encodeURL(request.getRequestURI()) + "?" + objParameter;
MessageCounter[] counter = topic.getMessageCounter();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.MEDIUM);
%>
<?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 - JMS Topic</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="StyleSheet" href="css/jboss.css" type="text/css"/>
</head>
<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 -->
<hr class="hide"/>
<!-- content begin -->
<center>
<div id="content">
<table width="95%" height="95%" border="0" cellspacing="0" cellpadding="0">
<tr align="center" valign="bottom">
<td height="24">
<jsp:include page="TopicNavigation.jsp" >
<jsp:param name="selectedTabName" value="Subscriptions"/>
</jsp:include>
</td>
</tr>
<tr>
<td colspan="5" valign="top" class="container">
<h4>Name</h4>
<p><%=topic.getTopicName()%></p>
<h4>Subscriptions:</h4>
<table border="1" cellpadding="0" cellspacing="0" class="data_table" bordercolor="#111111" width="95%" align="center" id="AutoNumber1">
<tr>
<td>
<h4>Subscription Name:</h4>
</td>
<td>
<h4>Durable:</h4>
</td>
<td>
<h4>Message Count:</h4>
</td>
<td>
<h4>Message Count Delta:</h4>
</td>
<td>
<h4>Last Message Add Date:</h4>
</td>
</tr>
<% for(int i = 0; i < counter.length; i++)
{
String lastModified = "N/A";
if (counter[i].getLastUpdate() > 0)
{
lastModified = dateFormat.format(new Date(counter[i].getLastUpdate()));
}
%>
<tr align="center">
<td align="left"> <%=counter[i].getDestinationSubscription()%> </td>
<td><%=counter[i].getDestinationDurable()%></td>
<td><%=counter[i].getDepth()%></td>
<td><%=counter[i].getDepthDelta()%></td>
<td><%=lastModified%></td>
</tr>
<%}%>
</table>
<p align="center"><a href="<%=myUrl%>">Refresh</a></p>
<p> </p>
<p> </p>
</td>
</tr>
</table>
<div class="spacer"><hr/></div>
</div>
</center>
<!-- content end -->
<!-- header end -->
<hr class="hide"/>
<hr class="hide"/>
<!-- footer begin -->
<div id="footer">
<div id="credits">JBoss Management Console</div>
<div id="footer_bar"> </div>
</div>
<!-- footer end -->
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -