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/

  • 相关阅读:
    ASCII&Base64
    CentOS自动同步时间
    Java的HashMap
    Java线程同步操作
    Nginx基本配置与应用
    vc中调用Com组件的方法详解
    VC++ try catch (转)
    oracle中exp,imp的使用详解
    jdbc oracle 连接字符串
    标准的开源实现
  • 原文地址:https://www.cnblogs.com/softidea/p/6111566.html
Copyright © 2011-2022 走看看