最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JPA配置詳解之jpaProperties用法

 更新時(shí)間:2021年11月22日 10:28:17   作者:LQW_home  
這篇文章主要介紹了JPA配置詳解之jpaProperties用法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

JPA配置之jpaProperties

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:jpa="http://www.springframework.org/schema/data/jpa"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd">
	
	<!-- spring自動(dòng)讀取指定位置的配置為簡(jiǎn)到spring中 -->
	<context:property-placeholder location="classpath*:/application.properties"/>
	
	<context:component-scan base-package="com.shiroweb">
		<!-- 掃描com.shiroweb包下除去@Controller以外注解的類 -->
		<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
		<context:exclude-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/>
	</context:component-scan>
	
	<!-- c3p0數(shù)據(jù)源配置 -->
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<property name="driverClass" value="${jdbc.driver}"/>
		<property name="jdbcUrl" value="${jdbc.url}" />
		<property name="user" value="${jdbc.username}"/>
		<property name="password" value="${jdbc.password}"/>
	</bean>
	
	<!-- Jpa Entity Manager 配置 關(guān)聯(lián)hibernateJpaVendorAdapter -->
	<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> 
		<property name="dataSource" ref="dataSource"/>
		<property name="jpaVendorAdapter" ref="hibernateJpaVendorAdapter"/>
		<property name="packagesToScan" value="com.shiroweb"/>
		<!-- <property name="jpaProperties">
			<props>
				命名規(guī)則 My_NAME->MyName
				<prop key="hibernate.ejb.naming_strategy">org.hibernate.cfg.ImprovedNamingStrategy</prop>
				實(shí)體類對(duì)應(yīng)數(shù)據(jù)庫(kù)沒(méi)有表 就生成一個(gè)表
				<prop key="hibernate.hbm2ddl.auto">update</prop>
			</props>
		</property> -->
		
		<!-- 指定JPA屬性;如Hibernate中指定是否顯示SQL的是否顯示、方言等 -->
		<property name="jpaProperties">
           <props>
               <!-- <prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop> -->
               <prop key="hibernate.ejb.naming_strategy">org.hibernate.cfg.ImprovedNamingStrategy</prop>
               <!-- <prop key="hibernate.cache.provider_class">org.hibernate.cache.NoCacheProvider</prop> -->
               <prop key="hibernate.show_sql">true</prop>
               <prop key="hibernate.format_sql">true</prop>
               <!-- <prop key="hibernate.hbm2ddl.auto">validate</prop> -->
               <prop key="hibernate.hbm2ddl.auto">update</prop>
           </props>
       </property>
	</bean>
	
	<!-- 配置hibernateJpaVendorAdapter關(guān)聯(lián)數(shù)據(jù)源 -->
	<bean id="hibernateJpaVendorAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
		<property name="database" value="MYSQL" />  
        <property name="showSql" value="true" /> 
	</bean>
	
	<!-- Spring Data Jpa配置 -->
 	<jpa:repositories base-package="com.shiroweb"  transaction-manager-ref="transactionManager" entity-manager-factory-ref="entityManagerFactory"/>
   
	<!-- Jpa 事務(wù)配置 -->
	<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
		<property name="entityManagerFactory" ref="entityManagerFactory"/>
	</bean>
 
	<!-- 使用annotation定義事務(wù) -->
	<tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true" />
</beans>

其中jpaProperties是這是jpa的一些屬性的

<!-- 指定JPA屬性;如Hibernate中指定是否顯示SQL的是否顯示、方言等 -->
 <property name="jpaProperties">
           <props>
               <!-- <prop key="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</prop> -->
               <prop key="hibernate.ejb.naming_strategy">org.hibernate.cfg.ImprovedNamingStrategy</prop>
               <!-- <prop key="hibernate.cache.provider_class">org.hibernate.cache.NoCacheProvider</prop> -->
               <prop key="hibernate.show_sql">true</prop>
               <prop key="hibernate.format_sql">true</prop>
               <!-- <prop key="hibernate.hbm2ddl.auto">validate</prop> -->
               <prop key="hibernate.hbm2ddl.auto">update</prop>
           </props>
       </property>

這里有個(gè)屬性為

<prop key="hibernate.hbm2ddl.auto">update</prop>

這是一個(gè)有用的設(shè)置

其實(shí)這個(gè)hibernate.hbm2ddl.auto參數(shù)的作用主要用于:自動(dòng)創(chuàng)建|更新|驗(yàn)證數(shù)據(jù)庫(kù)表結(jié)構(gòu)。如果不是此方面的需求建議set value="none"。

  • create:每次加載hibernate時(shí)都會(huì)刪除上一次的生成的表,然后根據(jù)你的model類再重新來(lái)生成新表,哪怕兩次沒(méi)有任何改變也要這樣執(zhí)行,這就是導(dǎo)致數(shù)據(jù)庫(kù)表數(shù)據(jù)丟失的一個(gè)重要原因。
  • create-drop:每次加載hibernate時(shí)根據(jù)model類生成表,但是sessionFactory一關(guān)閉,表就自動(dòng)刪除。
  • update:最常用的屬性,第一次加載hibernate時(shí)根據(jù)model類會(huì)自動(dòng)建立起表的結(jié)構(gòu)(前提是先建立好數(shù)據(jù)庫(kù)),以后加載hibernate時(shí)根據(jù) model類自動(dòng)更新表結(jié)構(gòu),即使表結(jié)構(gòu)改變了但表中的行仍然存在不會(huì)刪除以前的行。要注意的是當(dāng)部署到服務(wù)器后,表結(jié)構(gòu)是不會(huì)被馬上建立起來(lái)的,是要等 應(yīng)用第一次運(yùn)行起來(lái)后才會(huì)。
  • validate:每次加載hibernate時(shí),驗(yàn)證創(chuàng)建數(shù)據(jù)庫(kù)表結(jié)構(gòu),只會(huì)和數(shù)據(jù)庫(kù)中的表進(jìn)行比較,不會(huì)創(chuàng)建新表,但是會(huì)插入新值。

Sping Data Jpa配置問(wèn)題

spring.jpa.properties.hibernate.hbm2ddl.auto=update

在配置spring data jpa時(shí),如果spring.jpa.properties.hibernate.hbm2ddl.auto設(shè)置為update,會(huì)自動(dòng)更新數(shù)據(jù)表結(jié)構(gòu),比如Entity中增加成員變量,數(shù)據(jù)表中也會(huì)增加相應(yīng)的字段,但是需要注意的是,如果刪除一個(gè)成員變量,這時(shí)數(shù)據(jù)表中不會(huì)自動(dòng)刪除對(duì)應(yīng)的字段,如果刪除的那個(gè)成員變量在數(shù)據(jù)表中被設(shè)置為not null,當(dāng)再次運(yùn)行時(shí)就會(huì)報(bào)錯(cuò),如下面的例子

新建一個(gè)實(shí)體類

import lombok.Data;
import javax.persistence.*; 
@Entity
@Data
public class Car{ 
    @Id
    @Column(name="id", nullable = false)
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
 
    @Column(nullable = false)
    private String price;
 
    @Column
    private String color;
 
    @Column
    private String brand;
}

這時(shí)可以在數(shù)據(jù)庫(kù)中看到已經(jīng)自動(dòng)生成數(shù)據(jù)表car,并且有對(duì)應(yīng)的字段

這時(shí)我們刪掉Car中的price,重新運(yùn)行,我們?cè)俅尾榭磾?shù)據(jù)庫(kù)

發(fā)現(xiàn)還是存在price字段

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • java枚舉轉(zhuǎn)list通用類過(guò)程

    java枚舉轉(zhuǎn)list通用類過(guò)程

    文章介紹了如何將Java枚舉類型轉(zhuǎn)換為L(zhǎng)ist<Map<String, Object>>的通用類,該類可以實(shí)現(xiàn)枚舉到列表的轉(zhuǎn)換,并且示例了使用方法
    2025-03-03
  • Java中map和flatMap的區(qū)別舉例詳解

    Java中map和flatMap的區(qū)別舉例詳解

    這篇文章主要給大家介紹了關(guān)于Java中map和flatMap區(qū)別的相關(guān)資料,在Java中Stream接口有map()和flatmap()方法,兩者都有中間流操作,并返回另一個(gè)流作為方法輸出,需要的朋友可以參考下
    2023-10-10
  • Spring AOP使用@Aspect注解 面向切面實(shí)現(xiàn)日志橫切的操作

    Spring AOP使用@Aspect注解 面向切面實(shí)現(xiàn)日志橫切的操作

    這篇文章主要介紹了Spring AOP使用@Aspect注解 面向切面實(shí)現(xiàn)日志橫切的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-06-06
  • Java深入學(xué)習(xí)圖形用戶界面GUI之創(chuàng)建窗體

    Java深入學(xué)習(xí)圖形用戶界面GUI之創(chuàng)建窗體

    圖形編程中,窗口是一個(gè)重要的概念,窗口其實(shí)是一個(gè)矩形框,應(yīng)用程序可以使用其從而達(dá)到輸出結(jié)果和接受用戶輸入的效果,學(xué)習(xí)了GUI就讓我們用它來(lái)創(chuàng)建一個(gè)窗體
    2022-05-05
  • java正則表達(dá)式用法大全(深度好文)

    java正則表達(dá)式用法大全(深度好文)

    這篇文章主要給大家介紹了關(guān)于java正則表達(dá)式用法大全的相關(guān)資料,正則表達(dá)式在處理字符串時(shí)非常有用,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2023-10-10
  • Spring Boot 中使用 JSON Schema 校驗(yàn)復(fù)雜JSON數(shù)據(jù)的過(guò)程

    Spring Boot 中使用 JSON Schema 校驗(yàn)復(fù)雜JSO

    在數(shù)據(jù)交換領(lǐng)域,JSON Schema 以其強(qiáng)大的標(biāo)準(zhǔn)化能力,為定義和規(guī)范 JSON 數(shù)據(jù)的結(jié)構(gòu)與規(guī)則提供了有力支持,下面給大家介紹Spring Boot 中使用 JSON Schema 校驗(yàn)復(fù)雜JSON數(shù)據(jù)的過(guò)程,感興趣的朋友跟隨小編一起看看吧
    2024-08-08
  • spring注解 @PropertySource配置數(shù)據(jù)源全流程

    spring注解 @PropertySource配置數(shù)據(jù)源全流程

    這篇文章主要介紹了spring注解 @PropertySource配置數(shù)據(jù)源全流程,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-03-03
  • springCloud集成nacos啟動(dòng)時(shí)報(bào)錯(cuò)原因排查

    springCloud集成nacos啟動(dòng)時(shí)報(bào)錯(cuò)原因排查

    這篇文章主要介紹了springCloud集成nacos啟動(dòng)時(shí)報(bào)錯(cuò)原因排查,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-04-04
  • 淺談Java并發(fā)中ReentrantLock鎖應(yīng)該怎么用

    淺談Java并發(fā)中ReentrantLock鎖應(yīng)該怎么用

    本文主要介紹了ava并發(fā)中ReentrantLock鎖的具體使用,文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-11-11
  • 深入淺析springsecurity入門登錄授權(quán)

    深入淺析springsecurity入門登錄授權(quán)

    SpringSecurity為我們提供了基于注解的權(quán)限控制方案,這也是我們項(xiàng)目中主要采用的方式,我們可以使用注解去指定訪問(wèn)對(duì)應(yīng)的資源所需的權(quán)限,這篇文章主要介紹了springsecurity入門登錄授權(quán),需要的朋友可以參考下
    2024-05-05

最新評(píng)論

离岛区| 临沂市| 宜州市| 奉贤区| 重庆市| 武义县| 万载县| 平江县| 东方市| 改则县| 宾阳县| 梓潼县| 香港 | 肥乡县| 潢川县| 万州区| 韶关市| 化州市| 西吉县| 沙雅县| 关岭| 临城县| 边坝县| 云南省| 浠水县| 胶南市| 广昌县| 关岭| 白水县| 岳阳市| 赣榆县| 青海省| 喜德县| 盐城市| 永仁县| 雷州市| 平安县| 乌拉特后旗| 靖宇县| 临沧市| 崇义县|