日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

開發(fā)中經(jīng)常說到數(shù)據(jù)入庫,我們在實現(xiàn)時需要知道使用何種技術(shù),連接哪個數(shù)據(jù)庫,連接數(shù)據(jù)庫的賬號和密碼等等。

今天要跟大家分享的是spring web項目中使用MyBatis連接到postgresql中。以本機數(shù)據(jù)庫為例(即數(shù)據(jù)庫由本機啟動)。

1、安裝postgresql,并安裝postGIS擴展,建議安裝pgadmin方便使用。安裝過程不再贅述,網(wǎng)上教程多且詳細。

2、執(zhí)行下列代碼可以查看postgresql、postGIS版本信息,執(zhí)行失敗則安裝不成果

select version();  // 可以查看postgresql的版本信息。
SELECT PostGIS_full_version(); // 查看postGIS版本信息

 

 

 

 

3、在項目的pom.xml文件中配置依賴

<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.5.5</version>
</dependency>
<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>2.2.2</version>
</dependency>
<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
</dependency>

4、mApper類、啟動類中添加注解

@Mapper
public interface ShpMapper {
    int insertFeatureList(@Param("featureList") List<FeatureModel> featureModelList);
}
@SpringBootApplication
@MapperScan("com.example.geoservice.mapper")
public class GeoServiceApplication {

    public static void main(String[] args) {
        SpringApplication.run(GeoServiceApplication.class, args);
    }

}

5、寫配置文件application.properties(前) 或者 application.yml(后)

#配置mapper的掃描路徑
mybatis.mapper-locations=classpath:mapper/*Mapper.xml
# 地址:端口號/數(shù)據(jù)庫名稱
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres?useSSL=false
spring.datasource.username=postgres
spring.datasource.password=123456
spring.datasource.driver-class-name=org.postgresql.Driver
spring:
  datasource:
    driver-class-name: org. postgresql. Driver
    url: jdbc:postgresql://localhost:5432/postgres?useSSL=false
    username: postgres
    password: 123456

mybatis:
  mapper -locations: classpath:mapper/* . xml
  

6、運行時常見錯誤及解決辦法(1)

 Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2022-08-28 17:06:47.402 ERROR 13520 --- [      main] o.s.b.d.LoggingFailureAnalysisReporter   :

***************************
    APPLICATION FAILED TO START
***************************

    Description:

    Field shpMapper in com.example.geoservice.service.Impl.ShpServiceImpl required a bean of type 'com.example.geoservice.mapper.ShpMapper' that could not be found.

    The injection point has the following annotations:
            - @org.springframework.beans.factory.annotation.Autowired(required=true)

    Action:

    Consider defining a bean of type 'com.example.geoservice.mapper.ShpMapper' in your configuration.

解決辦法:在pom文件中添加依賴,在啟動類中添加掃描路徑

 

 

 

 

6、運行時常見錯誤及解決辦法(2)- 忘記數(shù)據(jù)庫用戶名和密碼

①查看用戶:在數(shù)據(jù)庫上右鍵 -> 屬性,在“常規(guī)”中可以看到所有者

 

 

 

②修改密碼。忘記密碼查看密碼比較麻煩,這里建議直接修改密碼。

ALTER USER postgres WITH PASSWORD '123456';

 

 

7、mybatis的mapper和xml跳轉(zhuǎn),推薦使用插件mybaitisx

點擊file -> setting -> Plugins -> Marketplace ,搜索mybatisx安裝

 

效果,點擊這個黑色的鳥,可以實現(xiàn)相互跳轉(zhuǎn)

 

 

 

分享完畢。

1、介紹mybaitis的基礎(chǔ)配置,

2、給出了mapper類的基礎(chǔ)樣例,

3、給出無啟動依賴時報錯解決方法,

4、通過pgadmin查看數(shù)據(jù)庫賬戶,給出修改密碼的方法

5、跳轉(zhuǎn)插件mybaitisX推薦

分享到:
標簽:數(shù)據(jù)庫
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定