1、maven repository mvn仓库

管理各种依赖关系,例如,

<!-- https://mvnrepository.com/artifact/aspectj/aspectjrt -->
<dependency>
    <groupId>aspectj</groupId>
    <artifactId>aspectjrt</artifactId>
    <version>1.5.4</version>
</dependency>

每个包的 groupId 、artifactId 以及 version 用来区分每个包的,它们都是唯一的。

其中还会有scope之类的,一些其他的设置参数

 

2、IDEA 添加开源的jar

在IntelliJ IDEA 中选择File->Project Structure->Modules->Dependencies 右边有个绿色的小加号,选择JARs or directories选择你要添加的外部jar包。一定要直接把jar的位置添加进去,然后才可以使用 import org.springframe...之类的方式导入进去。

 

3、IDEA 添加.xml 文件

spring 学习系列 --- 配置学习

4、java相关的学习资料

mysql documentation  https://dev.mysql.com/doc/refman/5.7/en/resetting-permissions.html

spring docmentation https://docs.spring.io/spring/docs/current/spring-framework-reference/

spring MVC documentation 

相关文章:

  • 2022-12-23
  • 2021-09-12
  • 2022-12-23
  • 2021-10-29
  • 2021-04-07
  • 2021-11-01
  • 2022-12-23
  • 2021-11-28
猜你喜欢
  • 2021-11-24
  • 2021-05-20
  • 2021-10-18
  • 2021-05-09
  • 2021-11-10
相关资源
相似解决方案