- Jakarta EE Cookbook
- Elder Moraes
- 44字
- 2021-06-24 16:12:35
Getting ready
We need to add the right CDI 2.0 dependency to your project. To make things easier at this point, we are going to use CDI SE, the dependency that allows you to use CDI without a Jakarta EE server:
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-shaded</artifactId>
<version>3.1.0.Final</version>
</dependency>
推薦閱讀
- INSTANT Mock Testing with PowerMock
- GraphQL學習指南
- JMeter 性能測試實戰(第2版)
- PHP 編程從入門到實踐
- Linux命令行與shell腳本編程大全(第4版)
- Learn React with TypeScript 3
- VMware虛擬化技術
- Go語言精進之路:從新手到高手的編程思想、方法和技巧(1)
- Troubleshooting Citrix XenApp?
- Mastering Adobe Captivate 7
- Flink技術內幕:架構設計與實現原理
- Clojure Polymorphism
- Mastering Embedded Linux Programming
- Spring Data JPA從入門到精通
- 程序員必會的40種算法