|
Spring Framework example source code file (jdbc.properties)
The Spring Framework jdbc.properties source code# Properties file with JDBC and JPA settings. # # Applied by <context:property-placeholder location="jdbc.properties"/> from # various application context XML files (e.g., "applicationContext-*.xml"). # Targeted at system administrators, to avoid touching the context XML files. #------------------------------------------------------------------------------- # Common Settings hibernate.generate_statistics=true hibernate.show_sql=true jpa.showSql=true #------------------------------------------------------------------------------- # HSQL Settings jdbc.driverClassName=org.hsqldb.jdbcDriver jdbc.url=jdbc:hsqldb:hsql://localhost:9001 jdbc.username=sa jdbc.password= # Property that determines which Hibernate dialect to use # (only applied with "applicationContext-hibernate.xml") hibernate.dialect=org.hibernate.dialect.HSQLDialect # Property that determines which JPA DatabasePlatform to use with TopLink Essentials jpa.databasePlatform=org.springframework.samples.petclinic.toplink.EssentialsHSQLPlatformWithNativeSequence # Property that determines which database to use with an AbstractJpaVendorAdapter jpa.database=HSQL #------------------------------------------------------------------------------- # MySQL Settings #jdbc.driverClassName=com.mysql.jdbc.Driver #jdbc.url=jdbc:mysql://localhost:3306/petclinic #jdbc.username=pc #jdbc.password=pc # Property that determines which Hibernate dialect to use # (only applied with "applicationContext-hibernate.xml") #hibernate.dialect=org.hibernate.dialect.MySQLDialect # Property that determines which JPA DatabasePlatform to use with TopLink Essentials #jpa.databasePlatform=oracle.toplink.essentials.platform.database.MySQL4Platform # Property that determines which database to use with an AbstractJpaVendorAdapter #jpa.database=MYSQL Other Spring Framework examples (source code examples)Here is a short list of links related to this Spring Framework jdbc.properties source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.