When using Idea, after modifying the code, you need to restart Tomcat repeatedly to check the effect. Isn’t it annoying? I still remember when I first started using idea, I blindly configured and deployed Tomcat. As a result, I had to restart the server every time I modified a jsp. How could a Taurus programmer like me tolerate this? ~At this time you have to smash your computer~At this time you can add hot deployment to the project, which will greatly save development efficiency! @ Tomcat Download TutorialIn fact, downloading is very simple. As for why I added the word "tutorial" ~ because it sounds good and easy to pronounce ~ Official website address - click to enter http://tomcat.apache.org/ Tomcat installation tutorialJust unzip it and the installation is over. However, the unzip path should not be the C drive, as it may cause various strange problems such as access denied. Also, the unzip path should not contain Chinese characters or special characters, remember! ! ! Hot deployment of Tomcat to IDEAThe default file of IntelliJ Idea is saved automatically. However, when a jsp file of a project is changed, Tomcat cannot respond to the change immediately, so hot deployment is required. Look here: If you find it annoying, you can ignore the long string of text below ~ I am just Photoshopping ~, it is completely OK to just follow the pictures! ! ! In the server configuration of idea tomcat, there is an on frame deactivation, select update classes and resources. There is also a configuration on update action, which is what action to take when manually operating. You can restart the server or update the class and resource files as above. I chose Redeploy. However, the current project does not have the option to update classes and resources, but there is a Hot Swap classes. This is due to the type of artifact added by the server. Generally, a module corresponds to two types of artifacts, one is war and the other is war explored. war means it is released in the form of a war package. The current project is in this form. In this form, the on frame deactivation configuration does not have the update classes and resources option. war explored is the published file directory. If you select this form, the update classes and resources option will appear in on frame deactivation. The specific operations are as follows: At this point, Tomcat hot deployment is on the idea, over~ Idea two hot deployment setting methodsThe second method: add corresponding dependencies in pom.xml (not recommended). As for why it is not recommended, it is because there is not so much spare time in later development to pay attention to whether hot deployment coordinate dependencies are introduced. It is better to configure it directly on idea. As the saying goes, one effort brings one hundred benefits! ! ! The specific operation is similar to the following <!--Support hot deployment dependencies--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> At this point, two methods have been explained. Hey, isn’t this just one method? I’ll give you a thumbs up... Brother, don’t be impulsive and don’t rush to give me a thumbs up. The first method is the setting that comes with idea, which has been configured above! Waving my claws, goodbye~ The classmate who wants to butt my fei, don't leave after school~... Summarize The above is the tutorial on how to download, install and deploy Tomcat to IDEA (with two hot deployment setting methods of IDEA). I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: The linkage method between menu and tab of vue+iview
>>: MySQL replication mechanism principle explanation
After the user logs out, if the back button on the...
Project scenario: Dark Horse Vue project manageme...
Table of contents 1. Add users 2. Change the user...
When position is absolute, the percentage of its ...
This article example shares the specific code of ...
A simple Linux guessing game source code Game rul...
This article describes how to create multiple ins...
MySql always pops up a MySQLInstallerConsole.exe ...
Rendering Commonly used styles in Blog Garden /*T...
【SQL】SQL paging query summary The need for paging...
When programmers do TypeScript/JavaScript develop...
Basic Concepts Current read and snapshot read In ...
Preface There are many devices nowadays, includin...
Table of contents 1. Foreign key constraints What...
This article shares the specific code of Vue3 man...