default.view.system.info.html Maven / Gradle / Ivy
@product - Info
Base
Node Name
@ctx.getNodeName()
Remote IP
@call.getRemoteIP().getHostAddress()
Trusted IP
@call.isTrusted()
Language
@call.getLang()
Headers
@for(String name : call.getRequest().headers().names()) {
@name
@for(String value : call.getRequest().headers().getAll(name)) {
@value
}
}
@if (!call.getCookies().isEmpty()) {
Cookies
Name
Value
Secure
HTTP only
@for(io.netty.handler.codec.http.cookie.Cookie cookie : call.getCookies()) {
@cookie.name()
@cookie.value()
@cookie.isSecure()
@cookie.isHttpOnly()
}
}
@if (!call.getSessionKeys().isEmpty()) {
Client Session
@for(String name : call.getSessionKeys()) {
@name
@call.getSessionValue(name)
}
}
Server Session
Session-ID
@if (call.getServerSession(false).isPresent()) {
@call.getServerSession().getId()
} else {
-
}
@if (call.getServerSession(false).isPresent()) {
Created At
@NLS.toUserString(new java.util.Date(call.getServerSession().getCreationTime()))
Max Inactivity
@NLS.convertDuration(call.getServerSession().getMaxInactiveInterval() * 1000)
@for(String name : call.getServerSession().getKeys()) {
@name
@call.getServerSession().getValue(name)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy