java-全工具下载
JDK
下载地址:
https://www.oracle.com/cn/java/technologies/downloads/archive/
配置环境变量(当前电脑在任何位置都能使用jdk中bin目录的命令)
我的电脑--》属性--》高级属性设置--》环境变量--》path 添加jdk安装目录中的bin文件路径
C:\Program Files\Java\jdk-17\bin
环境变量配置JAVA_HOME
配置JAVA_HOME给其他软件使用java提供一个窗口。
在系统变量中新建一个变量
变量名:JAVA_HOME
变量值::\Program Files\Java\jdk-17
idea
下载网址: https://www.jetbrains.com/idea/download/#section=windows
IDEA 分为两个版本: 旗舰版(Ultimate)
和 社区版(Community)
。
两个不同版本的详细对比,可以参照官网:
https://www.jetbrains.com/idea/features/editions_comparison_matrix.html
官网提供的详细使用文档:
https://www.jetbrains.com/help/idea/meet-intellij-idea.html
破解iede
进入之后,点击上方的jetbra.zip,进行下载,保存到你电脑上并解压==>
解压后文件如下:点击scripts进入==>
再点击:install-current-user.vbs==>
点击之后静等一会,一般几十秒,电脑就会弹出一个Done的弹幕。
这个时候在进入刚才的网址:复制激活码
打开idea,将刚刚复制的激活码复制到idea激活框中
MySQL数据库
下载网站:https://www.mysql.com/news-and-events/newsletter/
配置环境变量:
我的电脑--》属性--》高级属性设置--》环境变量--》path 添加mysql安装目录中的bin文件路径
Mysql可视化工具
Navicat
Tomcat
Tomcat 版本和Servlet版本之间的对应关系:
Servlet Version | **Tomcat ** Version | JDK Version |
---|---|---|
6.1 | 11.0.x | 17 and later |
6.0 | 10.1.x | 11 and later |
5.0 | 10.0.x (superseded) | 8 and later |
4.0 | 9.0.x | 8 and later |
3.1 | 8.5.x | 7 and later |
3.1 | 8.0.x (superseded) | 7 and later |
3.0 | 7.0.x (archived) | 6 and later (7 and later for WebSocket) |
下载:
-
Tomcat官方网站:https://archive.apache.org/dist/tomcat/;
-
安装版:需要安装,一般不考虑使用;
-
解压版:直接解压缩使用,我们使用的版本;
Idea配置Tomcat
Maven
安装路径:https://maven.apache.org/docs/history.html
配置环境变量(当前电脑在任何位置都能使用jdk中bin目录的命令)
我的电脑--》属性--》高级属性设置--》环境变量--》path 添加maven安装目录中的bin文件路径
环境变量配置MAVEN_HOME
配置maven镜像
-
配置本地仓库地址
<!-- localRepository | The path to the local repository maven will use to store artifacts. | | Default: ${user.home}/.m2/repository <localRepository>/path/to/local/repo</localRepository> --> <!-- conf/settings.xml 55行 --> <localRepository>D:\repository</localRepository>
-
配置国内阿里镜像
<!--在mirrors节点(标签)下添加中央仓库镜像 160行附近--> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>
-
配置jdk17版本项目构建
<!--在profiles节点(标签)下添加jdk编译版本 268行附近--> <profile> <id>jdk-17</id> <activation> <activeByDefault>true</activeByDefault> <jdk>17</jdk> </activation> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion> </properties> </profile>