- Spring 5.0 By Example
- Claudio Eduardo de Oliveira
- 77字
- 2021-06-24 19:17:33
Adding Lombok dependency
Put the following dependency in a pom.xml file:
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.16</version>
<scope>provided</scope>
</dependency>
The provided scope instructs Maven not to include this dependency in the JAR file because we need it at compile time. We do not need it at runtime. Wait for Maven to download the dependency, that is all for now.
Also, we can use the Reimport All Maven Projects provided by IntelliJ IDEA, located in the Maven Projects tab, as shown here:

推薦閱讀
- Instant Node Package Manager
- Java面向對象思想與程序設計
- Java應用開發與實踐
- x86匯編語言:從實模式到保護模式(第2版)
- Spring Boot進階:原理、實戰與面試題分析
- Learning Probabilistic Graphical Models in R
- Learning Unreal Engine Android Game Development
- Python3.5從零開始學
- Visual FoxPro 6.0程序設計
- PrimeFaces Blueprints
- uni-app跨平臺開發與應用從入門到實踐
- Cocos2d-x by Example:Beginner's Guide(Second Edition)
- Hacking Android
- Arduino電子設計實戰指南:零基礎篇
- Java EE基礎實用教程