springboot 整合phoenix
时间: 2023-11-20 09:56:39 浏览: 189
springboot集成phoenix+hbase
5星 · 资源好评率100%
以下是Spring Boot集成Phoenix的步骤:
1.在pom.xml文件中添加Phoenix和HBase的依赖:
```xml
<dependency>
<groupId>org.apache.phoenix</groupId>
<artifactId>phoenix-core</artifactId>
<version>4.14.3-HBase-1.4</version>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>1.4.10</version>
</dependency>
```
2.在Spring Boot的配置文件application.yml中添加数据源配置:
```yaml
spring:
datasource:
driver-class-name: org.apache.phoenix.jdbc.PhoenixDriver
url: jdbc:phoenix:IP地址:2181
```
3.在需要使用Phoenix的地方注入JdbcTemplate:
```java
@Autowired
private JdbcTemplate jdbcTemplate;
```
4.使用JdbcTemplate执行SQL语句:
```java
List<Map<String, Object>> result = jdbcTemplate.queryForList("SELECT * FROM TABLE_NAME");
```
阅读全文