创建demo
package com.merchen.hello_world.controller;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("/res")
public class ResController {
@GetMapping("/test/{value}")
public String testController(@PathVariable("value")String name){
return name;
}
}
spring.application.name=hello_world
server.servlet.context-path=/hello
spring.thymeleaf.enabled=true
server.port=80 #例如生产是80,ip是localhost
配置远程端口
启动生产环境的jar包,命令
本地启动项目
文章来源:https://www.toymoban.com/news/detail-858897.html
访问本地(localhost:80相当于远程),即可断点调试
文章来源地址https://www.toymoban.com/news/detail-858897.html
到了这里,关于Idea实现远程debug调试的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!