Spring-boot的debug调试代码实例
人气:0这篇文章主要介绍了Spring-boot的debug调试代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
xml文件中配置:
<property> <name>scf.server.vm.all</name> <value>-Xms512m -Xmx512m -Xmn128m -Xss1024K -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=128m -XX:ParallelGCThreads=20 -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction=4 -XX:CMSInitiatingOccupancyFraction=70 -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -XX:+PrintGCApplicationStoppedTime -Xloggc:../log/orgagent/gc.log -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=7983 -Dspring.profiles.active=dev</value> </property>
其中-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=7983
简单介绍下以上参数的含义:
- -Xdebug是通知JVM工作在DEBUG模式下
- -Xrunjdwp是通知JVM使用(java debug wire protocol)来运行调试环境。该参数同时了一系列的调试选项
- transport指定了调试数据的传送方式,dt_socket是指用SOCKET模式
- server参数是指是否支持在server模式的VM中
- suspend指明,是否在调试客户端建立起来后,再执行VM,如果为y,那么当前的VM就是suspend直到有debug client连接进来才开始执行程序。如果你的程序不是服务器监听模式并且很快就执行完毕的,那么可以选择在y来阻塞它的启动。
- address=7983 调试服务器的端口号,客户端用来连接服务器的端口号。
您可能感兴趣的文章:
- Java项目开启远程调试的方法步骤(tomcat、springboot)
- Intellij IDEA基于Springboot的远程调试(图文)
- Springboot jar包远程调试详解
- SpringBoot使用knife4j进行在线接口调试
- VsCode搭建Spring Boot项目并进行创建、运行、调试
- SpringBoot通过redisTemplate调用lua脚本并打印调试信息到redis log(方法步骤详解)
- Spring Boot Debug调试过程图解
- 基于MockMvc进行springboot调试(SpringbootTest)
- SpringBoot项目设置断点debug调试无效忽略web.xml问题的解决
- Spring Boot开启远程调试的方法
加载全部内容