IDEA连接postgressql数据库操作

 更新时间:2020年08月28日 12:07:30   作者:Zartillery  
这篇文章主要介绍了IDEA连接postgressql数据库操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

打开IDEA后选择Database数据库选项卡

点击加号标志,选择Data Source,在弹出选项中选择PostgreSQL数据库

填入配置信息,点击Test Connection按钮测试是否连接成功,然后点击ok

补充知识:IDEA spring boot 连接Postgresql配置 【已解决】

1.IDEA创建项目

修改 C:\Program Files\PostgreSQL\9.4\data路径下的 pg_hba.conf配置信息

# METHOD can be "trust", "reject", "md5", "password", "gss", "sspi",
# "ident", "peer", "pam", "ldap", "radius" or "cert". Note that
# "password" sends passwords in clear text; "md5" is preferred since
# it sends encrypted passwords.

这里解释了配置信息,我们只需要将自己电脑ipv4/ipv6对应的 METHOD修改成trust就可以使用。我的电脑采用的ipv4,所以我修改的是ipv4的METHOD为trust。

2.创建application.yml文件,写入驱动接口

spring:
 datasource:
  url: jdbc:postgresql://172.30.105.178:5432/mysql?useSSL=false
  username: postgres
  password: 0000
  driverClassName: org.postgresql.Driver

JpaPostgresqlApplicationTests.java

package com.qingsong.jdbc_test;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.SQLException;

@RunWith(SpringRunner.class)
@SpringBootTest
public class JdbcTestApplicationTests {

  @Autowired
  DataSource dataSource;
  @Test
  public void contextLoads() throws SQLException {
    System.out.println("连接成功");
    System.out.println("dataSource.getClass()内容***"+dataSource.getClass());

    Connection connection = dataSource.getConnection();
    System.out.println("connection内容***"+connection);
    connection.close();
  }
}

controller.java

package com.qingsong.mybatis_mysql.control;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.List;
import java.util.Map;

/**
 * @Auther: 青松
 * @Date: 2019/3/5 20:19
 */
@Controller
public class controller {
  /**
   * @Autowired 注释,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。 通过 @Autowired的使用来消除 set ,get方法。
   * 在使用@Autowired之前,我们对一个bean配置起属性时,是这用的
   */
  @Autowired
  JdbcTemplate jdbcTemplate;

  @ResponseBody
  @GetMapping("/hi")
  public Map<String,Object> map(){
    List<Map<String,Object>> list=jdbcTemplate.queryForList("select * from author");
    return list.get(0);
  }
}

Author.sql

create table Author
(
  code varchar(20) primary key,
  name varchar(20) not null
);

application.properties

# schema.sql中一般存放的是DDL脚本

spring.datasource.schema=classpath:Author.sql
spring.datasource.initialization-mode=always

运行结果

以上这篇IDEA连接postgressql数据库操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • Java源码解析之TypeVariable详解

    Java源码解析之TypeVariable详解

    这篇文章主要介绍了Java源码解析之TypeVariable详解,具有一定参考价值,需要的朋友可以了解下。
    2017-10-10
  • Eclipse、MyEclipse 导入svn项目具体步骤

    Eclipse、MyEclipse 导入svn项目具体步骤

    这篇文章主要介绍了Eclipse、MyEclipse 导入svn项目具体步骤的相关资料,需要的朋友可以参考下
    2016-10-10
  • SpringMVC多个模块404报错问题及解决

    SpringMVC多个模块404报错问题及解决

    这篇文章主要介绍了SpringMVC多个模块404报错问题及解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2023-09-09
  • SpringCloud超详细讲解微服务网关Zuul基础

    SpringCloud超详细讲解微服务网关Zuul基础

    这篇文章主要介绍了SpringCloud Zuul微服务网关,负载均衡,熔断和限流,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-10-10
  • 详解JAVA设计模式之适配器模式

    详解JAVA设计模式之适配器模式

    这篇文章主要介绍了JAVA设计模式之适配器模式的的相关资料,文中示例代码非常详细,供大家参考和学习,感兴趣的朋友可以了解
    2020-06-06
  • java 读写文件[多种方法]

    java 读写文件[多种方法]

    前两天用到读写文件的操作,上网搜了一些这方面的资料。很有用的。
    2008-11-11
  • 详解Java并发工具类之CountDownLatch和CyclicBarrier

    详解Java并发工具类之CountDownLatch和CyclicBarrier

    在JDK的并发包中,有几个非常有用的并发工具类,它们分别是:CountDownLatch、CyclicBarrier、Semaphore和Exchanger,本文主要来讲讲其中CountDownLatch和CyclicBarrier的使用,感兴趣的可以了解一下
    2023-06-06
  • JAVA实现读取txt文件内容的方法

    JAVA实现读取txt文件内容的方法

    本篇文章主要介绍了JAVA实现读取txt文件内容的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-01-01
  • SpringBoot集成Redis及SpringCache缓存管理示例详解

    SpringBoot集成Redis及SpringCache缓存管理示例详解

    本文介绍了如何在SpringBoot中集成Redis并使用SpringCache进行缓存管理,详解了Redis的配置、使用以及SpringCache的注解,还阐述了SpringCache的工作原理,包括其AOP实现和与各种缓存框架的集成,使得开发者可以轻松实现缓存功能,以提高应用性能
    2024-09-09
  • RestTemplate发送get和post请求,下载文件的实例

    RestTemplate发送get和post请求,下载文件的实例

    这篇文章主要介绍了RestTemplate发送get和post请求,下载文件的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-09-09

最新评论