[Spring Boot] Spring Boot, JSP 환경에서 IntelliJ 디버깅 하기
Spring Boot
정지범
[last modified :
2020-05-09
]
nayasis@gmail.com [2020/07/15 12:10]
안녕하세요 매니저님 (이젠 팀장님이시겠죠 ?)
옵션에 fork 를 false 로 하면 IDE 에서 디버깅이 가능합니다. (대신 로그 ansi 가 안먹는 문제가... )
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>false</fork> <!-- do not use fork to enter debugger -->
</configuration>
</plugin>
</plugins>
</build>
nayasis@gmail.com
[2020/07/15 12:10]
nayasis@gmail.com [2020/07/15 12:11]
^gt;build<
^gt;plugins<
^gt;plugin<
^gt;groupId<org.springframework.boot^gt;/groupId<
^gt;artifactId<spring-boot-maven-plugin^gt;/artifactId<
^gt;configuration<
^gt;fork<false^gt;/fork< ^gt;!-- do not use fork to enter debugger --<
^gt;/configuration<
^gt;/plugin<
^gt;/plugins<
^gt;/build<
[2020/07/15 12:10]
안녕하세요 매니저님 (이젠 팀장님이시겠죠 ?) 옵션에 fork 를 false 로 하면 IDE 에서 디버깅이 가능합니다. (대신 로그 ansi 가 안먹는 문제가... ) <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>false</fork> <!-- do not use fork to enter debugger --> </configuration> </plugin> </plugins> </build>
nayasis@gmail.com[2020/07/15 12:10]
[2020/07/15 12:11]
^gt;build< ^gt;plugins< ^gt;plugin< ^gt;groupId<org.springframework.boot^gt;/groupId< ^gt;artifactId<spring-boot-maven-plugin^gt;/artifactId< ^gt;configuration< ^gt;fork<false^gt;/fork< ^gt;!-- do not use fork to enter debugger --< ^gt;/configuration< ^gt;/plugin< ^gt;/plugins< ^gt;/build<
nayasis@gmail.com[2020/07/15 12:11]
[2020/07/15 12:12]
댓글 수정, 삭제기능 넣어주세요 ~~
nayasis@gmail.com[2020/07/15 12:12]