ショートカットキーとホットデプロイのSpringbootアイデア

(1)ショートカット。

idea中查看方法参数;查看类、方法、属性注释
Ctrl+P:查看方法参数
Ctrl+Q:查看类、方法、属性注释

(2)ホット・デプロイ:

準備:

関連する構成に依存POMへ:

<!-- 热部署 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>

1.最初のステップ:

 2.ステップ2:

Ctrlキーを押しながら+ Shiftキー+ Altキー+ /、表示されます。

 

3.第三段階:

 

 

公開された71元の記事 ウォン称賛22 ビュー6029

おすすめ

転載: blog.csdn.net/Kevin__Coder/article/details/104236506