本内容持续更新中:

1.javaWeb阶段遇到的jar包:

(1)jsonjar包

maven依赖:
1. jackson依赖包

  1. <dependency>
  2. <groupId>com.fasterxml.jackson.core</groupId>
  3. <artifactId>jackson-databind</artifactId>
  4. <version>2.9.3</version>
  5. </dependency>
  6. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  7. <dependency>
  8. <groupId>com.fasterxml.jackson.core</groupId>
  9. <artifactId>jackson-core</artifactId>
  10. <version>2.9.3</version>
  11. </dependency>
  12. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
  13. <dependency>
  14. <groupId>com.fasterxml.jackson.core</groupId>
  15. <artifactId>jackson-annotations</artifactId>
  16. <version>2.9.3</version>
  17. </dependency>
  1. fastjson 依赖包 ```java com.alibaba fastjson 1.2.47
  1. 3.gosn依赖包
  2. ```java
  3. <dependency>
  4. <groupId>com.google.code.gson</groupId>
  5. <artifactId>gson</artifactId>
  6. <version>2.8.2</version>
  7. </dependency>

(2)JSTL标签库依赖

jstl1.2版本

  1. <dependency>
  2. <groupId>jstl</groupId>
  3. <artifactId>jstl</artifactId>
  4. <version>1.2</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>taglibs</groupId>
  8. <artifactId>standard</artifactId>
  9. <version>1.1.2</version>
  10. </dependency>

(3)Jquery依赖

  1. <!--jquery依赖-->
  2. <dependency>
  3. <groupId>org.webjars</groupId>
  4. <artifactId>jquery</artifactId>
  5. <version>3.5.1</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>junit</groupId>
  9. <artifactId>junit</artifactId>
  10. <version>4.13</version>
  11. </dependency>

文本编辑器
image.png