- Jakarta EE Cookbook
- Elder Moraes
- 28字
- 2021-06-24 16:12:34
Getting ready
First, you need to add the right Jakarta Bean Validation dependency to your project, as follows:
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.15.Final</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.1-b11</version>
</dependency>
</dependencies>
推薦閱讀
- 大學計算機基礎實驗教程
- Visual Basic編程:從基礎到實踐(第2版)
- Django開發從入門到實踐
- 深入理解Java7:核心技術與最佳實踐
- 精通API架構:設計、運維與演進
- MySQL數據庫基礎實例教程(微課版)
- 數據結構習題解析與實驗指導
- Managing Microsoft Hybrid Clouds
- Mastering Apache Camel
- Laravel Design Patterns and Best Practices
- Beginning C# 7 Hands-On:The Core Language
- Building Microservices with Go
- HTML5/CSS3/JavaScript技術大全
- Expert Cube Development with SSAS Multidimensional Models
- Python服務端測試開發實戰