2016-11-17 116 views
2

我想在Tomcat中9 deply一些应用程序(4春天启动Web应用程序),我注意到其中2使Tomcat log中显示:Tomcat的死机部署SpringBoot应用

17-Nov-2016 00:15:07.110 INFO [localhost-startStop-2] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive /Users/viruskimera/apache-tomcat-9.0.0.M11/webapps/ftpoutbound990-0.0.1-SNAPSHOT.war 

而且它保持这样只是部署它不显示部署完成。 的事情是,即使它不完全出现部署,该应用程序也能正常工作。 (I见我log4j的项和文件的文件夹监视处理)

这些应用程序监视使用Java watchService用下面的代码2个不同的文件夹:

包com.ftpoutbound990.monitor;

import java.io.File; 
import java.io.FileInputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.nio.file.ClosedWatchServiceException; 
import java.nio.file.FileSystems; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
import java.nio.file.StandardWatchEventKinds; 
import java.nio.file.WatchEvent; 
import java.nio.file.WatchKey; 
import java.nio.file.WatchService; 

import org.apache.log4j.Logger; 
import org.springframework.beans.factory.annotation.Autowired; 
import org.springframework.beans.factory.annotation.Value; 
import org.springframework.stereotype.Component; 

import com.ftpoutbound990.client.FtpoutboundApp; 

@Component 
public class MonitorDirectory { 

    final static Logger logger = Logger.getLogger(MonitorDirectory.class); 

    @Autowired 
    private FtpoutboundApp ftpoutboundapp; 

    @Value("${folder990}") 
    private String folder990; 

    public void startMonitoring() throws IOException, InterruptedException { 
     logger.info("INICIO DE MONITOREO DE ARCHIVOS 990"); 
     try (WatchService watchService = FileSystems.getDefault().newWatchService()) { 

      Path faxFolder = Paths.get(folder990); 

      WatchService watchmyservice = FileSystems.getDefault().newWatchService(); 
      faxFolder.register(watchmyservice, StandardWatchEventKinds.ENTRY_CREATE); 

      boolean valid = true; 
      do { 
       try { 
        WatchKey watchKey = watchmyservice.take(); 

        for (WatchEvent event : watchKey.pollEvents()) { 
         WatchEvent.Kind kind = event.kind(); 
         if (StandardWatchEventKinds.ENTRY_CREATE.equals(event.kind())) { 
          String fileName = event.context().toString(); 
          logger.info("ARCHIVO NUEVO:" + fileName); 
          boolean isGrowing = false; 
          Long initialWeight = new Long(0); 
          Long finalWeight = new Long(0); 
          Path child = faxFolder.resolve(folder990 + fileName); 
          do { 
           initialWeight = child.toFile().length(); 
           Thread.sleep(1000); 
           finalWeight = child.toFile().length(); 
           isGrowing = initialWeight < finalWeight; 
           logger.info("AUN COPIANDO ARCHIVO:" + fileName); 
          } while (isGrowing); 
          logger.info("LISTO ARCHIVO:" + fileName); 
          getFile(fileName); 
         } 
        } 
        valid = watchKey.reset(); 
        // Thread.sleep(1000 * 10); 
       } catch (InterruptedException | ClosedWatchServiceException e) { 
        //watchmyservice.close(); 
        Thread.currentThread().interrupt(); 
       } 

      } while (valid); 
     } 
    } 

    public void getFile(String fileName) throws IOException { 

     File file = new File(folder990 + fileName); 
     ftpoutboundapp.createGateway(file); 
    } 

} 

如果我删除了Do-While应用程序完成部署!但为什么?这是一个标准的Java watchservice代码,任何人都可以帮助我认识到我错过了什么/有什么问题? 事情是,Tomcat不部署我的第四个应用程序,因为它不断部署第三个。 在此先感谢您的帮助


编辑1:添加螺纹

28-Dec-2016 17:57:27.558 INFO [main] org.apache.catalina.core.StandardServer.await A valid shutdown command was received via the shutdown port. Stopping the Server instance. 
28-Dec-2016 17:57:27.559 INFO [main] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["http-nio-8080"] 
28-Dec-2016 17:57:27.613 INFO [main] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["ajp-nio-8009"] 
28-Dec-2016 17:57:27.664 INFO [main] org.apache.catalina.core.StandardService.stopInternal Stopping service Catalina 
28-Dec-2016 17:57:27.664 SEVERE [ContainerBackgroundProcessor[StandardEngine[Catalina]]] org.apache.catalina.startup.HostConfig.deployWARs Error waiting for multi-thread deployment of WAR files to complete 
java.lang.InterruptedException 
    at java.util.concurrent.FutureTask.awaitDone(FutureTask.java:404) 
    at java.util.concurrent.FutureTask.get(FutureTask.java:191) 
    at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:744) 
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:407) 
    at org.apache.catalina.startup.HostConfig.check(HostConfig.java:1595) 
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:280) 
    at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:92) 
    at org.apache.catalina.core.ContainerBase.backgroundProcess(ContainerBase.java:1136) 
    at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1372) 
    at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1376) 
    at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1344) 
    at java.lang.Thread.run(Thread.java:745) 

28-Dec-2016 18:00:21.904 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version:  Apache Tomcat/9.0.0.M11 
28-Dec-2016 18:00:21.907 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built:   Oct 6 2016 18:54:10 UTC 
28-Dec-2016 18:00:21.908 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number:   9.0.0.0 
28-Dec-2016 18:00:21.908 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name:    Mac OS X 
28-Dec-2016 18:00:21.908 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version:   10.9.5 
28-Dec-2016 18:00:21.908 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture:   x86_64 
28-Dec-2016 18:00:21.908 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home:    /Library/Java/JavaVirtualMachines/jdk1.8.0_73.jdk/Contents/Home/jre 
28-Dec-2016 18:00:21.908 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version:   1.8.0_73-b02 
28-Dec-2016 18:00:21.908 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor:   Oracle Corporation 
28-Dec-2016 18:00:21.909 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE:   /Users/viruskimera/apache-tomcat-9.0.0.M11 
28-Dec-2016 18:00:21.909 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME:   /Users/viruskimera/apache-tomcat-9.0.0.M11 
28-Dec-2016 18:00:21.909 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.config.file=/Users/viruskimera/apache-tomcat-9.0.0.M11/conf/logging.properties 
28-Dec-2016 18:00:21.909 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 
28-Dec-2016 18:00:21.909 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djdk.tls.ephemeralDHKeySize=2048 
28-Dec-2016 18:00:21.910 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources 
28-Dec-2016 18:00:21.910 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/Users/viruskimera/apache-tomcat-9.0.0.M11 
28-Dec-2016 18:00:21.910 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/Users/viruskimera/apache-tomcat-9.0.0.M11 
28-Dec-2016 18:00:21.910 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/Users/viruskimera/apache-tomcat-9.0.0.M11/temp 
28-Dec-2016 18:00:21.910 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /Users/viruskimera/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. 
28-Dec-2016 18:00:22.063 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-nio-8080"] 
28-Dec-2016 18:00:22.093 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read 
28-Dec-2016 18:00:22.096 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["ajp-nio-8009"] 
28-Dec-2016 18:00:22.098 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read 
28-Dec-2016 18:00:22.100 INFO [main] org.apache.catalina.startup.Catalina.load Initialization processed in 604 ms 
28-Dec-2016 18:00:22.145 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service Catalina 
28-Dec-2016 18:00:22.145 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet Engine: Apache Tomcat/9.0.0.M11 
28-Dec-2016 18:00:22.224 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive /Users/viruskimera/apache-tomcat-9.0.0.M11/webapps/ftpoutbound990-0.0.1-SNAPSHOT.war 
28-Dec-2016 18:00:26.346 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time. 

    . ____   _   __ _ _ 
/\\/___'_ __ _ _(_)_ __ __ _ \ \ \ \ 
(()\___ | '_ | '_| | '_ \/ _` | \ \ \ \ 
\\/ ___)| |_)| | | | | || (_| | )))) 
    ' |____| .__|_| |_|_| |_\__, |//// 
=========|_|==============|___/=/_/_/_/ 
:: Spring Boot ::  (v1.3.6.RELEASE) 

回答

1

以在盲目出手..

代码的简单审查表明,如果有异常抛出试图捕获,布尔标志valid仍然true导致无限循环。

因此,在catch块的主体中​​将标志设置为false!

+0

我在检查此问题。 – viruskimera

2

tomcat部署者线程似乎调用startMonitoring方法。按照预期,这种方法永远不会返回,因此部署没有完成。

要解决此问题,需要在单独的(或后台)线程中运行监视方法。

下面的重构示例可能会有所帮助。

需要注意的是,WatcherService实例的单个实例可以用于观察多个目录。

import java.io.File; 
import java.io.IOException; 
import java.nio.file.FileSystems; 
import java.nio.file.Path; 
import java.nio.file.Paths; 
import java.nio.file.StandardWatchEventKinds; 
import java.nio.file.WatchEvent; 
import java.nio.file.WatchKey; 
import java.nio.file.WatchService; 
import java.util.concurrent.ExecutorService; 
import java.util.concurrent.Executors; 

import javax.annotation.PostConstruct; 
import javax.annotation.PreDestroy; 

import org.apache.log4j.Logger; 
import org.springframework.beans.factory.annotation.Autowired; 
import org.springframework.beans.factory.annotation.Value; 
import org.springframework.stereotype.Component; 

@Component 
public class MonitorDirectory { 

    final static Logger logger = Logger.getLogger(MonitorDirectory.class); 

    @Autowired 
    private FtpoutboundApp ftpoutboundapp; 

    @Value("${folder990}") 
    private String folder990; 

    private WatchService watchService; 

    private ExecutorService eventLoop = Executors.newFixedThreadPool(1); 

    @PostConstruct 
    public void init() throws IOException, InterruptedException { 
     watchService = FileSystems.getDefault().newWatchService(); 
     eventLoop.submit((Runnable)() -> { 
      try { 
       startMonitoring(); 
      } catch (Exception e) { 
       logger.error("ERROR...", e); 
      } 
     }); 
    } 

    @PreDestroy 
    public void destroy() throws IOException { 
     eventLoop.shutdownNow(); 
     if (watchService != null) { 
      watchService.close(); 
     } 
    } 

    public void startMonitoring() throws IOException, InterruptedException { 
     logger.info("INICIO DE MONITOREO DE ARCHIVOS 990"); 
     Path faxFolder = Paths.get(folder990); 
     WatchKey watchKey = faxFolder.register(watchService, StandardWatchEventKinds.ENTRY_CREATE); 
     boolean valid = true; 
     do { 
      for (WatchEvent<?> event : watchKey.pollEvents()) { 
       WatchEvent.Kind<?> kind = event.kind(); 
       if (StandardWatchEventKinds.ENTRY_CREATE.equals(kind)) { 
        String fileName = event.context().toString(); 
        logger.info("ARCHIVO NUEVO:" + fileName); 
        boolean isGrowing = false; 
        Long initialWeight = new Long(0); 
        Long finalWeight = new Long(0); 
        Path child = faxFolder.resolve(folder990 + fileName); 
        do { 
         initialWeight = child.toFile().length(); 
         Thread.sleep(1000); 
         finalWeight = child.toFile().length(); 
         isGrowing = initialWeight < finalWeight; 
         logger.info("AUN COPIANDO ARCHIVO:" + fileName); 
        } while (isGrowing); 
        logger.info("LISTO ARCHIVO:" + fileName); 

        getFile(fileName); 
       } 
       valid = watchKey.reset(); 
      } 
     } while (valid); 
    } 

    public void getFile(String fileName) throws IOException { 
     File file = new File(folder990 + fileName); 
     ftpoutboundapp.createGateway(file); 
    } 

} 
+0

我正在尝试这个 – viruskimera

+0

看看我的编辑1,这是一个本地运行,但我担心它会在服务器中相同。我应用了你的代码并冻结了它,然后关闭了tomcat并显示:看看SEVERE ERROR:28-Dec-2016 17:57:27.664,它表示等待部署完成的错误。我甚至尝试将v1.4.1.RELEASE中的spring版本更改为v1.3.6.RELEASE,因为1个应用程序使用v1.4.1.RELEASE正确部署,但发生同样的情况。 – viruskimera

+0

顺便说一句我注意到java进程的内存消耗增加。 – viruskimera

1

你可以检查下面的几件事。

是否在您的应用程序中仅调用Component MonitorDirectory一次。如果不是,您可能需要声明'eventLoop'为静态,并检查PostConstruct中的初始化以避免多次初始化和调用。

此外,ExecutorService的被初始化为1的线程池,如果多MonitorDirectory对象在应用程序初始化,这可能会导致部署冻结

是否有任何机会,文件大小可在服务器环境有所萎缩。这可能会导致'isGrowing'检查无限循环..

+0

部分代码是由上面的用户Skadya提出的,但我会说MOnitor只被调用1次,怎么可能不止一次调用监视器?注意这个运行1个电脑,但是我们已经从该电脑拷贝了所有东西(jdk ,tomcat等)我尝试使用@scheduled注释,似乎工作,但仍处理一些问题。 – viruskimera

+0

在Spring中,每当一个对象被初始化时,'postConstruct'方法将被调用。如果应用程序可以为同一对象(具有并发性的典型Web应用程序)生成多个对象,则可能发生这种情况。 –