第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

無法為 hibernate 項(xiàng)目創(chuàng)建請(qǐng)求的服務(wù)

無法為 hibernate 項(xiàng)目創(chuàng)建請(qǐng)求的服務(wù)

慕妹3242003 2023-09-06 16:54:14
當(dāng)我嘗試使用 Eclipse 中的 PostgreSQL 使用 Jdbc 配置來運(yùn)行 Hibernate 示例項(xiàng)目時(shí),出現(xiàn)錯(cuò)誤“線程“main”中的異常 org.hibernate.service.spi.ServiceException: 無法創(chuàng)建請(qǐng)求的服務(wù) [org.hibernate.engine. jdbc.env.spi.JdbcEnvironment] “。即使在搜索類似類型的問題后,我也無法解決此錯(cuò)誤。這是為了使用Hibernate 5.2.17、PostgreSQL 11和Jdk 1.8運(yùn)行新的 hibernate 項(xiàng)目。我嘗試使用 Hibernate v4.2.0 運(yùn)行,但它給出了 jdbc 錯(cuò)誤“ClassLoadingException”。我的 hibernate.cfg.xml 文件:<!DOCTYPE hibernate-configuration PUBLIC"-//Hibernate/Hibernate Configuration DTD//EN""http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"><hibernate-configuration>    <session-factory>        <property name="hibernate.connection.driver_class">org.postgres.Driver</property>        <property name="hibernate.connection.url">jdbc:postgres://localhost:5432/hibernatedb</property>        <property name="hibernate.connection.username">postgres</property>        <property name="hibernate.connection.password">password</property>        <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>        <property name="connection.pool_size">1</property>        <!-- Disable the second-level cache -->        <property name="cache.provider_class">org.hibernate.NoCacheProvider</property>        <!-- Echo all executed SQL to stdout -->        <property name="show_sql">1</property>        <!-- Drop and re-create the database schema on startup -->        <property name="hibernate.hbm2ddl.auto">create</property>        <!-- Names the annotated entity class -->        <mapping class="home.practice.hibernate.dto.UserDetails"/>    </session-factory></hibernate-configuration>我的模型類 ieUserDetails.javapackage home.practice.hibernate.dto;import javax.persistence.Entity;import javax.persistence.Id;@Entitypublic class UserDetails {    @Id    private int userId;    private String userName;    public int getUserId() {        return userId;    }
查看完整描述

1 回答

?
躍然一笑

TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個(gè)贊

當(dāng)您看到帶有如下堆棧跟蹤的異常時(shí):

Caused by: java.lang.ClassNotFoundException: Could not load requested class : org.postgres.Driver
    [...]
    at java.lang.Class.forName(Unknown Source)
    [...]

類路徑中很可能沒有類加載器由于 Class.forName 調(diào)用而嘗試加載的類。

當(dāng)使用 Class.forName 動(dòng)態(tài)加載類時(shí),該類僅在運(yùn)行時(shí)需要,而不是在編譯時(shí)需要,并且當(dāng)不可用時(shí),它會(huì)生成此類錯(cuò)誤。

您的 hibernate.cfg.xml 中有一個(gè)拼寫錯(cuò)誤:

<property name="hibernate.connection.driver_class">org.postgres.Driver</property>

driver_classClass.forName這是傳遞給堆棧跟蹤中的調(diào)用的類;postgres jdbc 驅(qū)動(dòng)程序的正確類名org.postgresql.Driver不是org.postgres.Driver,所以

<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>


查看完整回答
反對(duì) 回復(fù) 2023-09-06
  • 1 回答
  • 0 關(guān)注
  • 128 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)