当前位置:   article > 正文

IDEA安装及配置_idea2022安装好了,需要配置一些啥

idea2022安装好了,需要配置一些啥

目录:

1.为什么学习Idea

2.概念

3.下载和安装配置变量

4.安装好后配置

5.设置Idea里面的配置

一、主题设置

二、鼠标悬浮提示

三、显示方法分隔符

四、忽略大小写提示

五、自动导包

六、设置字体

七、设置自动编译

八、快捷方式改为Eclipse

九、设置默认浏览器

1.为什么学习Idea:

      学习Idea(也称为创意)对个人和组织来说都非常重要,原因如下:

  1. 创造力和创新:Idea是创造力和创新的关键。通过学习如何生成创意和思考新颖的解决方案,我们能够在个人生活和工作中更有创造力和创新性。Idea推动着社会和经济的进步。

  2. 解决问题能力:学习Idea可以帮助我们在面对各种问题和挑战时找到更好的解决方案。通过掌握创意思维和问题解决方法,我们能够更快地找到解决问题的方法,改善生活和工作中的各种情况。

  3. 发现机会:Idea使我们能够看到机会并抓住机遇。通过灵活思维和观察力,我们能够发现市场需求、创业机会和其他潜在的发展领域,从而取得成功。

  4. 提高自我表达:学习Idea可以帮助我们更好地表达自己的想法和观点。通过培养创意思维和良好的表达能力,我们能够更好地沟通和交流,影响他人并达到预期目标。

  5. 人际关系:Idea也有助于改善人际关系。通过共享和讨论创意,我们能够与他人建立更紧密的联系,加强合作,并更好地理解和尊重他人的观点和想法。

所以学习Idea对于个人和组织来说都是非常重要的。它有助于培养创造力、解决问题能力、发现机会、提高自我表达和改善人际关系。这些技能和能力将在各个领域和生活中发挥重要作用。

2.概念:

Idea(创意)是对某种独特思想或概念的构思、创造或想象。它可以是一个新颖的观点、解决问题的方法、产品或服务的设计,或者是一个艺术作品的概念等。Idea通常具有以下特征:

  1. 创新性:Idea应该是新颖、独特且与以往的想法不同。它可以是对传统思维的突破,打破常规的创造性思考。

  2. 实用性:Idea应该有实际应用的潜力,能够解决问题、满足需求或带来益处。一个好的Idea不仅仅是一个抽象的概念,还需要在实践中能够被实现和应用。

  3. 价值性:Idea应该具有一定的价值,可以带来经济、社会或个人上的利益。它可以创造商业机会、提高效率、改善生活质量等。

  4. 可执行性:Idea应该是可行的,并且有可行的步骤和计划来实现它。一个好的Idea需要考虑到可行性因素,如资源、技术和市场条件等。

  5. 原创性:Idea应该是原创的,不侵犯他人的知识产权或抄袭他人的概念。尊重知识产权和创意的原创性是学术和商业领域中的重要原则。

所以Idea是一种创造性思维的产物,具有创新、实用、价值和可行等特征。它推动着创新和发展,被广泛应用于各个领域和行业。

3.下载和安装配置变量:

下载地址:

IDEA的下载地址:https://www.jetbrains.com/zh-cn/idea/download/?section=windows

 安装:搜素以上网址进入网站

接下来看我操作:

点击安装然后选择下载目录:

 安装完成后需要配置变量

 

一、主题设置
File->Settings->Appearance->Theme

 

二、鼠标悬浮提示
File->Settings->Editor->General->Show quik documentation on mouse move 

 

 

三、显示方法分隔符

File->Settings->Editor->General->Appearance->Show method separators

 

 

四、忽略大小写提示

 File->Settings->Editor->General->Code Completion->Math case

  

 

五、自动导包

File->Settings->Editor->General->Auto lmport

六、设置字体
File->Settings->General->Font

 

七、设置自动编译
File->Settings->Build,Exeution,Deployment->Compiler

 

八、快捷方式改为Eclipse
File->Settings->Keymap

 

九、设置默认浏览器
File->Settings->Tools->Web Browsers

 

 配置XML:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.example</groupId>
  6. <artifactId>ideamaven</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>ideamaven Maven Webapp</name>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>4.12</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <version>5.1.44</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet</groupId>
  31. <artifactId>javax.servlet-api</artifactId>
  32. <version>4.0.1</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <finalName>ideamaven</finalName>
  38. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.7.0</version>
  44. <configuration>
  45. <source>1.8</source>
  46. <target>1.8</target>
  47. <encoding>UTF-8</encoding>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-clean-plugin</artifactId>
  52. <version>3.1.0</version>
  53. </plugin>
  54. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  55. <plugin>
  56. <artifactId>maven-resources-plugin</artifactId>
  57. <version>3.0.2</version>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>3.8.0</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-surefire-plugin</artifactId>
  65. <version>2.22.1</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-war-plugin</artifactId>
  69. <version>3.2.2</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-install-plugin</artifactId>
  73. <version>2.5.2</version>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-deploy-plugin</artifactId>
  77. <version>2.8.2</version>
  78. </plugin>
  79. </plugins>
  80. </pluginManagement>
  81. </build>
  82. </project>

配置XML:

  1. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  4. version="3.1">
  5. <display-name>Archetype Created Web Application</display-name>
  6. </web-app>

创建一个index:
 

  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: 30340
  4. Date: 2023/8/11
  5. Time: 16:34
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>Title</title>
  12. </head>
  13. <body>
  14. hello idea 0000
  15. </body>
  16. </html>

编写servlet:

  1. package com.zking.deno;
  2. import javax.servlet.ServletException;
  3. import javax.servlet.annotation.WebServlet;
  4. import javax.servlet.http.HttpServlet;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. import java.io.IOException;
  8. /**
  9. * @author bing人
  10. * @site
  11. * @company xy集团
  12. * @create 2023-08-11 16:29
  13. */
  14. @WebServlet("/demo")
  15. public class DemoSevlet extends HttpServlet {
  16. @Override
  17. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  18. this.doPost(req, resp);
  19. }
  20. @Override
  21. protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  22. System.out.println("hello idea");
  23. req.getRequestDispatcher("index.jsp").forward(req,resp);
  24. }
  25. }

输出结果:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/600377
推荐阅读
相关标签
  

闽ICP备14008679号