zoukankan      html  css  js  c++  java
  • Running as a packaged application--- -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n

    19.2 Running as a packaged application

    If you use the Spring Boot Maven or Gradle plugins to create an executable jar you can run your application using java -jar. For example:

    $ java -jar target/myproject-0.0.1-SNAPSHOT.jar

    It is also possible to run a packaged application with remote debugging support enabled. This allows you to attach a debugger to your packaged application:

    $ java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n 
           -jar target/myproject-0.0.1-SNAPSHOT.jar

    19.3 Using the Maven plugin

    The Spring Boot Maven plugin includes a run goal which can be used to quickly compile and run your application. Applications run in an exploded form just like in your IDE.

    $ mvn spring-boot:run

    You might also want to use the useful operating system environment variable:

    $ export MAVEN_OPTS=-Xmx1024m -XX:MaxPermSize=128M -Djava.security.egd=file:/dev/./urandom

    (The “egd” setting is to speed up Tomcat startup by giving it a faster source of entropy for session keys.)

    http://docs.spring.io/spring-boot/docs/1.3.9.BUILD-SNAPSHOT/reference/htmlsingle/

  • 相关阅读:
    PHP中echo和print的区别
    Python input和raw_input的区别
    for,if语句
    Mac下安装PEAR
    IOS之代理
    socket总结
    jQuery 遍历函数 ,javascript中的each遍历
    DP:最大公共子序列
    6.2省赛总结
    NEUOJ1302最大子序列
  • 原文地址:https://www.cnblogs.com/softidea/p/6111566.html
Copyright © 2011-2022 走看看