org.apache.catalina.Context.getDisplayName()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(119)

本文整理了Java中org.apache.catalina.Context.getDisplayName()方法的一些代码示例,展示了Context.getDisplayName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Context.getDisplayName()方法的具体详情如下:
包路径:org.apache.catalina.Context
类名称:Context
方法名:getDisplayName

Context.getDisplayName介绍

[英]Return the display name of this web application.
[中]返回此web应用程序的显示名称。

代码示例

代码示例来源:origin: psi-probe/psi-probe

app.setName(context.getName().length() > 0 ? context.getName() : "/");
app.setDocBase(context.getDocBase());
app.setDisplayName(context.getDisplayName());

代码示例来源:origin: com.springsource.insight/insight-collection-tcserver

public static String label(Context context) {
  String displayName = context.getDisplayName();
  String contextPath = context.getPath();
  if ("".equals(contextPath)) {
    contextPath = "/";
  }
  if (displayName == null) {
    return contextPath;
  }
  return contextPath + " (" + displayName + ")";
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

args[1] = RequestUtil.filter(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = RequestUtil.filter(ctxt.getDisplayName());

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

args[1] = Escape.htmlElementContent(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = Escape.htmlElementContent(ctxt.getDisplayName());

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

args[1] = RequestUtil.filter(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = RequestUtil.filter(ctxt.getDisplayName());

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

args[1] = RequestUtil.filter(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = RequestUtil.filter(ctxt.getDisplayName());

代码示例来源:origin: codefollower/Tomcat-Research

args[1] = RequestUtil.filter(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = RequestUtil.filter(ctxt.getDisplayName());

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

args[1] = RequestUtil.filter(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = RequestUtil.filter(ctxt.getDisplayName());

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

args[1] = RequestUtil.filter(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = RequestUtil.filter(ctxt.getDisplayName());

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

args[1] = Escape.htmlElementContent(ctxt.getWebappVersion());
if (ctxt.getDisplayName() == null) {
  args[2] = " ";
} else {
  args[2] = Escape.htmlElementContent(ctxt.getDisplayName());

相关文章

微信公众号

最新文章

更多

Context类方法