Spring Hibernate:没有 JDBC 类型的方言映射:-101
Posted
技术标签:
【中文标题】Spring Hibernate:没有 JDBC 类型的方言映射:-101【英文标题】:Spring Hibernate: No Dialect mapping for JDBC type: -101 【发布时间】:2018-10-02 21:23:14 【问题描述】:我正在开发一个 spring-boot 应用程序并尝试构建我的存储库,但遇到了 Hibernate 问题。
Pom 依赖项:(还有更多,只是发布我认为相关的内容)
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.3.6.Final</version>
</dependency>
Application.properties
# Properties for Spring datasources
#
# If multiple datasources are needed, the autoconfiguration will need
# to be excluded (add "(exclude = DataSourceAutoConfiguration.class)" to the
# @SpringBootApplication annotation in TankInventoryApplication).
#
# Then manual datasources will have to configured in a @Configuration annotated config class
#
spring.datasource.url=<url>
spring.datasource.username=<user>
spring.datasource.password=<password>
spring.datasource.driver-class-name=oracle.jdbc.OracleDriver
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.jpa.properties.hibernate.format_sql=true
# Properties for Hibernate
#
# Use empty string for hbm2ddl.auto to suppress warning message
# hibernate.hbm2ddl.auto=validate - doesn't work
#
hibernate.dialect=org.hibernate.dialect.Oracle10gDialect
hibernate.useSecondLevelCache=false
hibernate.cacheProviderClass=net.sf.ehcache.hibernate.EhCacheProvider
hibernate.cacheRegionFactoryClass=net.sf.ehcache.hibernate.EhCacheRegionFactory
hibernate.hbm2DdlAuto=
存储库:
//@Repository
//public interface PWeightTagsRepository extends JpaRepository<PTags, Integer>
//
// @Query(value = "SELECT T FROM PTags T WHERE T.adbLDeliveryStatus = 'N' ORDER BY T.adbSequence ASC")
// List<PTags> getNewMessages();
//
@Repository
public class PWeightTagsRepository
@Autowired
protected EntityManager em;
public List<PTags> getNewMessages(Integer limit)
javax.persistence.Query query = em.createNativeQuery("SELECT T.* FROM GSTARTIB.P_TAGS T WHERE T.ADB_L_DELIVERY_STATUS = 'N'");
return query.getResultList();
我的困惑是,如果我取消注释存储库中的第一个函数,它将毫无问题地运行并返回结果。
但是,在运行第二个函数时,我得到:org.hibernate.MappingException: No Dialect mapping for JDBC type: -101
错误,即使在我的 application.properties 文件中我声明了一个方言。
我在这里错过了什么?
【问题讨论】:
嗯,我发现了问题。它给出的错误消息对我来说似乎具有误导性,因为它与解决方案不匹配。我需要为createNativeQuery
函数提供一个 .class 来转换结果。 em.createNativeQuery(<query>, PTags.class)
解决了这个问题。
请将它作为答案发布并接受它,以便其他人看到问题已解决。
【参考方案1】:
嗯,我发现了问题。
它给出的错误消息对我来说似乎具有误导性,因为它与解决方案不匹配。
我需要为createNativeQuery
函数提供.class
来转换结果。
em.createNativeQuery(<query>, PTags.class)
修复了问题
【讨论】:
以上是关于Spring Hibernate:没有 JDBC 类型的方言映射:-101的主要内容,如果未能解决你的问题,请参考以下文章
Spring Hibernate:没有 JDBC 类型的方言映射:-101
为啥我们的 Spring/Hibernate/JDBC/Websphere 系统中的连接过早关闭?
Spring Data JDBC / Spring Data JPA 与 Hibernate
Spring Security JDBC 和 Hibernate JPA