All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.server.HomeBaseWarning Maven / Gradle / Ivy

There is a newer version: 12.0.13
Show newest version
//
// ========================================================================
// Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.server;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;

import org.eclipse.jetty.util.StringUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Display an optional Warning Message if the {jetty.home} and {jetty.base} are the same directory.
 * 

* This is to warn about not recommended approach to setting up the Jetty Distribution. */ public class HomeBaseWarning { private static final Logger LOG = LoggerFactory.getLogger(HomeBaseWarning.class); public HomeBaseWarning() { boolean showWarn = false; String home = System.getProperty("jetty.home"); String base = System.getProperty("jetty.base"); if (StringUtil.isBlank(base)) { // no base defined? then we are likely running // via direct command line. return; } Path homePath = new File(home).toPath(); Path basePath = new File(base).toPath(); try { showWarn = Files.isSameFile(homePath, basePath); } catch (IOException e) { LOG.trace("IGNORED", e); // Can't definitively determine this state return; } if (showWarn) { StringBuilder warn = new StringBuilder(); warn.append("This instance of Jetty is not running from a separate {jetty.base} directory"); warn.append(", this is not recommended. See documentation at https://www.eclipse.org/jetty/documentation/current/startup.html"); LOG.warn("{}", warn.toString()); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy