⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 topicsubscriptions.jsp

📁 這是compiere2的官方沒問題版本~我在fedora10上安裝正確無誤~不會出現錯誤訊息 ~不過我發現compiere他自己本身有自己專屬的網站server~所以有架設網站的網友們~ 可能要斟
💻 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">
		&nbsp;</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">&nbsp<%=counter[i].getDestinationSubscription()%>&nbsp</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>&nbsp;</p>
			<p>&nbsp;</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">&nbsp;</div>
	</div>
<!-- footer end -->
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -