首页 > 数据库技术 > 详细

java jdb

时间:2019-07-12 15:30:02      阅读:77      评论:0      收藏:0      [点我收藏+]

https://stackoverflow.com/questions/8155253/how-do-i-compile-in-debug-mode-netbeans-java-maven

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.5.1</version>
    <configuration>
        <source>1.6</source>
        <target>1.6</target>
        <debug>true</debug>
        <debuglevel>lines,vars,source</debuglevel> 
    </configuration>
  </plugin>

JAVA_OPTS="$JAVA_OPTS -Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y"
$JAVA_HOME$/bin/jdb -attach 127.0.0.1:8787

https://zzyongx.github.io/blogs/jdb.html

https://blog.csdn.net/arkblue/article/details/39718947

https://www.jianshu.com/p/5a64ed722b91

https://www.infoq.cn/article/basic-java-debugging

https://alibaba.github.io/arthas/

https://www.jianshu.com/p/1b1c998c4448 

https://blog.csdn.net/chengzhezhijian/article/details/13627909


https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/tooldescr011.html

java jdb

原文:https://www.cnblogs.com/xuxm2007/p/11176188.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!