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

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 文件

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 

猜你喜欢

转载自blog.csdn.net/hwang4_12/article/details/82951190