首页 > 其他分享 >idea 本地模拟远程debug

idea 本地模拟远程debug

时间:2023-06-25 12:12:51浏览次数:32  
标签:mapstruct idea maven version debug org lombok 远程

maven 配置

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <encoding>utf-8</encoding>
                    <source>1.8</source>
                    <target>1.8</target>
                    <annotationProcessorPaths>
                        <path>
                            <groupId>org.mapstruct</groupId>
                            <artifactId>mapstruct-processor</artifactId>
                            <version>${map-struct.version}</version>
                        </path>
                        <path>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                            <version>${lombok.version}</version>
                        </path>
                        <path>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok-mapstruct-binding</artifactId>
                            <version>${lombok-mapstruct-binding.version}</version>
                        </path>
                    </annotationProcessorPaths>
                </configuration>
            </plugin>

mvn package

win 终端

java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=50055 -jar remote-debug-0.0.1-SNAPSHOT.jar

curl http://localhost:8080/remote-debug/test

debug

端口号和上面一致

标签:mapstruct,idea,maven,version,debug,org,lombok,远程
From: https://www.cnblogs.com/linzm14/p/17502590.html

相关文章

  • 驱动开发:内核远程线程实现DLL注入
    在笔者上一篇文章《内核RIP劫持实现DLL注入》介绍了通过劫持RIP指针控制程序执行流实现插入DLL的目的,本章将继续探索全新的注入方式,通过NtCreateThreadEx这个内核函数实现注入DLL的目的,需要注意的是该函数在微软系统中未被导出使用时需要首先得到该函数的入口地址,NtCreateThreadEx......
  • 基于SpringBoot+MySQL+IDEA开发的家庭财务管理系统
    基于SpringBoot+MySQL+IDEA开发的家庭财务管理系统项目介绍......
  • IDEA 有用的插件使用汇总 记录
    IDEA有用的插件:添加idea的日志高亮显示插件:settings-->plugins-->GrepConsole插件:settings-->plugins-->IDEEvalRest插件:settings-->plugins-->ManvenHelper插件:settings-->plugins-->MyBatisX插件:settings-->plugins-->SpringInitializrandAssista......
  • Tomcat-Idea集成本地Tomcat和Maven插件
         ......
  • PostgreSQL 配置远程访问
    PostgreSQL安装完毕后需要设置客户端远程访问,具体步骤参考如下postgresql.conf找到配置文件目录[root@hadoop201pgsql]#locateostgresql.conf/usr/pgsql-15/share/postgresql.conf.sample/var/lib/pgsql/15/data/postgresql.conf打开文件进行编辑[root@hadoop201pgs......
  • idea的创建与使用mapper映射文件
    一.创建mapper映射文件在设置中模板<?xmlversion="1.0"encoding="UTF-8"?><!DOCTYPEmapperPUBLIC"-//mybatis.org//DTDMapper3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mappernamespace="&......
  • idea远程debug参考一
    参考一:https://blog.csdn.net/publicv/article/details/126130834服务器操作:1:服务器执行命令:10005是idea和服务器连接socket的端口号,和项目本身的端口无关nohupjava-jar-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=10005xx.jar&12:确认一下,远......
  • Proj. CAR Paper Reading: Debin: Predicting Debug Information in Stripped Binarie
    Abstract本文:Debin任务:recoveringsymbolnames,typesandlocations方法:useescalablestructuredpredictionalgorithmsinprobabilisticgraphicalmodelswithanextensivesetoffeaturestodistinguishthenameandthetypeofkeyelementsextractedsucha......
  • 宝塔面板 mongodb设置账号,密码,数据库,并配置远程连接
    宝塔面板安装 mongo4.0后需要设置账号密码可数据库才能使用安装后 authorization:disabled  默认配置时才可以使用这个功能,如果没有admin需要先手动创建一个admin库,然后在创建一个  yourdatabaseSSH终端1、进入mongodb安装目录,下面是宝塔面板的默认目录cd/www/......
  • STelnet远程登录设备
    1、应用场景Stelnet提供安全的认证方式,用户可以通过STelnet安全地登录远程设备,对设备进行管理和维护。举个“栗子”用户需要安全地登录远程设备,并对其进行方便地管理和维护:设备作为SSHServer,IP地址为10.137.217.203/24。2、前提条件用户本地PC安装SSH服务器软件。本例中以Pu......