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

📄 attributes.jsp

📁 Lambda Probe(Tomcat Probe)是一个基于Web以实时的方式来管理单个Tomcat主机的工具。它除了具备标准Tomcat Manager大部份功能之外还提供一些能够帮助Web开发者
💻 JSP
字号:
<%--  ~ Licensed under the GPL License. You may not use this file except in compliance with the License.  ~ You may obtain a copy of the License at  ~  ~   http://probe.jstripe.com/d/license.shtml  ~  ~ THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR  ~ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED  ~ WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.  --%><%@ page contentType="text/html;charset=UTF-8" language="java" session="false" %><%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c' %><%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %><%@ taglib uri="http://displaytag.sf.net" prefix="display" %><%@ taglib uri="/WEB-INF/tags/jstripe.tld" prefix="js" %><%--    Session attributes view, nothing spectacular.    Author: Vlad Ilyushchenko.--%><html><head>    <title>        <spring:message code="probe.jsp.title.sessionAttibutes"/>    </title></head><%--    Make Tab #1 visually "active".--%><c:set var="navTabApps" value="active" scope="request"/><c:set var="use_decorator" value="application" scope="request"/><c:set var="appTabSessions" value="active" scope="request"/><body><ul class="options">    <li id="back"><a            href="<c:url value="/sessions.htm"><c:param name="webapp" value="${param.webapp}"/><c:param name="size" value="${param.size}"/></c:url>">        <spring:message code="probe.jsp.sessionAttibutes.menu.back"/></a>    </li>    <c:if test="${! empty session}">        <li id="delete"><a                href="<c:url value="/app/expire.htm"/>?webapp=${param.webapp}&sid=${param.sid}">            <spring:message code="probe.jsp.sessionAttibutes.menu.destroy"/></a>        </li>        <c:choose>            <c:when test="${param.size}">                <li id="size"><a href="?<js:toggle param="size"/>"><spring:message code="probe.jsp.hidesize"/></a></li>            </c:when>            <c:otherwise>                <li id="size"><a href="?<js:toggle param="size"/>"><spring:message code="probe.jsp.showsize"/></a></li>            </c:otherwise>        </c:choose>    </c:if></ul><div class="embeddedBlockContainer"><c:choose><c:when test="${! empty session}">    <h3><spring:message code="probe.jsp.sessionAttibutes.h3.card"/></h3>    <div class="shadow">        <div class="info">            <p>                <spring:message code="probe.jsp.sessionAttibutes.card.application"/>&nbsp;<span class="value">${param.webapp}</span>                <spring:message code="probe.jsp.sessionAttibutes.card.id"/>&nbsp;<span class="value">${session.id}</span>                <spring:message code="probe.jsp.sessionAttibutes.card.serializable"/>&nbsp;                <c:choose>                    <c:when test="${session.serializable}">                            <span class="okValue"><spring:message code="probe.jsp.sessionAttibutes.card.serializable.yes"/></span>                    </c:when>                    <c:otherwise>                            <span class="errorValue"><spring:message code="probe.jsp.sessionAttibutes.card.serializable.no"/></span>                    </c:otherwise>                </c:choose>                <spring:message code="probe.jsp.sessionAttibutes.card.age"/>&nbsp;<span class="value"><js:duration value="${session.age}"/></span>                <spring:message code="probe.jsp.sessionAttibutes.card.idleTime"/>&nbsp;<span class="value"><js:duration value="${session.idleTime}"/></span>                <spring:message code="probe.jsp.sessionAttibutes.card.manager"/>&nbsp;<span class="value">${session.managerType}</span>                <spring:message code="probe.jsp.sessionAttibutes.card.info"/>&nbsp;<span class="value">${session.info}</span>                <spring:message code="probe.jsp.sessionAttibutes.card.created"/>&nbsp;<span class="value">${session.creationTime}</span>                <spring:message code="probe.jsp.sessionAttibutes.card.lastAccessed"/>&nbsp;<span class="value">${session.lastAccessTime}</span>                <spring:message code="probe.jsp.sessionAttibutes.card.maxIdleTime"/>&nbsp;<span class="value"><js:duration value="${session.maxIdleTime}"/></span>                <spring:message code="probe.jsp.sessionAttibutes.card.expiryTime"/>&nbsp;<span class="value">${session.expiryTime}</span>                <c:if test="${param.size}">                    <spring:message code="probe.jsp.sessionAttibutes.card.size"/>&nbsp;<span class="value"><js:volume value="${session.size}"/></span>                </c:if>            </p>        </div>    </div>    <h3><spring:message code="probe.jsp.sessionAttibutes.h3.attributes"/></h3>    <c:choose>        <c:when test="${! empty session.attributes}">            <display:table name="session.attributes" id="attribute"                           class="genericTbl" cellspacing="0" cellpadding="0"                           requestURI="">                <display:column title="&nbsp;" class="leftmost" style="width: 20px;">                    <a href="                                <c:url value="/app/rmsattr.htm">                                    <c:param name="webapp" value="${param.webapp}"/>                                    <c:param name="sid" value="${param.sid}"/>                                    <c:param name="attr" value="${attribute.name}"/>                                </c:url>                            " class="imglink">                        <img class="lnk" src="${pageContext.request.contextPath}<spring:theme code="remove.img"/>"                             alt="<spring:message code="probe.jsp.sessionAttibutes.col.delete"/>"                             title="<spring:message code="probe.jsp.sessionAttibutes.col.delete.title"/>"/>                    </a>                </display:column>                <display:column property="name" sortable="true"                                titleKey="probe.jsp.sessionAttibutes.col.name"/>                <display:column property="type" sortable="true" titleKey="probe.jsp.sessionAttibutes.col.type"/>                <display:column sortable="true" sortProperty="serializable"                                titleKey="probe.jsp.sessionAttibutes.col.serializable">                    <c:choose>                        <c:when test="${attribute.serializable}">                                    <span class="okValue"><spring:message                                            code="probe.jsp.sessionAttibutes.card.serializable.yes"/></span>                        </c:when>                        <c:otherwise>                                    <span class="errorValue"><spring:message                                            code="probe.jsp.sessionAttibutes.card.serializable.no"/></span>                        </c:otherwise>                    </c:choose>                </display:column>                <c:if test="${param.size}">                    <display:column sortProperty="size" sortable="true"                                    titleKey="probe.jsp.sessionAttibutes.col.size" class="highlighted">                        <js:volume value="${attribute.size}"/>                    </display:column>                </c:if>                <display:column sortProperty="value" sortable="true"                                titleKey="probe.jsp.sessionAttibutes.col.value">                    <c:choose>                        <c:when test="${session.allowedToViewValues}">                            <c:out value="${attribute.value}" escapeXml="true"/>                        </c:when>                        <c:otherwise>                            **************                        </c:otherwise>                    </c:choose>                </display:column>            </display:table>        </c:when>        <c:otherwise>            <spring:message code="probe.jsp.sessionAttibutes.noattributes"/>        </c:otherwise>    </c:choose></c:when><c:otherwise>    <div class="errorMessage">        <p>            <spring:message code="probe.jsp.sessionAttibutes.invalidSid"/>        </p>    </div></c:otherwise></c:choose></div></body></html>

⌨️ 快捷键说明

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