Use Oracle clob in Hibernate Spring

Source: Internet
Author: User

In Oracle databases, varchar2 (4000), a large amount of content, is often helpless. In this regard, we often use large objects for storage (clob), but because the jdbc driver does not support CLOB well, it is often very troublesome to use hibernate for operations. However, with the latest oracle driver, ojdbc14.jar

Then, slightly change the attributes of SessionFactory in Spring:

<Bean id = "sessionFactory"

Class = "org. springframework. orm. hibernate3.annotation. AnnotationSessionFactoryBean">

<Property name = "dataSource">

<Ref bean = "dataSource"/>

</Property>

<Property name = "hibernateProperties">

<Props>

<Prop key = "hibernate. dialect">

Org. hibernate. dialect. Oracle9Dialect

</Prop>

<Prop key = "hibernate. connection. SetBigStringTryClob"> true </prop>

</Props>

</Property>

<Property name = "mappingResources">

</Property>

</Bean>

Then change the ing file:

<Property name = "newsContent" type = "text">

<Column name = "NEWS_CONTENT"/>

</Property>

In the POJO class, you can directly use the String type for free access!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.