Class JpaProperties
- java.lang.Object
-
- com.broadleafcommerce.common.jpa.data.JpaProperties
-
public class JpaProperties extends Object
Expose the SpringJpaPropertiesandHibernatePropertiesconcepts inside of a specific data route focused property concept. This allows for similar property structure to existing Spring documentation, but with a Broadleaf, data route focused prefix.- Author:
- Jeff Fischer
- See Also:
JpaPropertyRelated
-
-
Constructor Summary
Constructors Constructor Description JpaProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.orm.jpa.vendor.DatabasegetDatabase()StringgetDatabasePlatform()org.springframework.boot.autoconfigure.orm.jpa.HibernatePropertiesgetHibernate()List<String>getMappingResources()BooleangetOpenInView()Map<String,String>getProperties()booleanisGenerateDdl()booleanisShowSql()voidsetDatabase(org.springframework.orm.jpa.vendor.Database database)voidsetDatabasePlatform(String databasePlatform)voidsetGenerateDdl(boolean generateDdl)voidsetHibernate(org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties hibernate)voidsetOpenInView(Boolean openInView)voidsetProperties(Map<String,String> properties)voidsetShowSql(boolean showSql)
-
-
-
Method Detail
-
getHibernate
public org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties getHibernate()
-
setHibernate
public void setHibernate(org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties hibernate)
-
getDatabasePlatform
public String getDatabasePlatform()
-
setDatabasePlatform
public void setDatabasePlatform(String databasePlatform)
-
getDatabase
public org.springframework.orm.jpa.vendor.Database getDatabase()
-
setDatabase
public void setDatabase(org.springframework.orm.jpa.vendor.Database database)
-
isGenerateDdl
public boolean isGenerateDdl()
-
setGenerateDdl
public void setGenerateDdl(boolean generateDdl)
-
isShowSql
public boolean isShowSql()
-
setShowSql
public void setShowSql(boolean showSql)
-
getOpenInView
public Boolean getOpenInView()
-
setOpenInView
public void setOpenInView(Boolean openInView)
-
-