기본 콘텐츠로 건너뛰기

[Shortcut] Web Development Commands

  • Show console/Close inspect window

Cmd + Option + J


  • Show element


Cmd + Option + C

  • Kill process concerned with port 8000

sudo lsof -t -i tcp:8000 | xargs kill -9

 

  • Exporting Spring Boot application to jar file

./mvnw clean package


  • Exporting Spring Boot application to jar file without testing

./mvnw clean package -DskipTests

 

댓글