java - 应用程序服务器和本地 Eclipse 的 Hibernate 外部配置设计

标签 java hibernate spring-mvc configuration

我在这里找到了很多关于使用 Spring 外部化 Hibernate 设置的帖子,因此它不在 hibernate.cfg.xml 配置文件中。然而,我的问题围绕着拥有一个使用 Eclipse 的开发环境,然后将生成的 WAR 文件部署到单独的服务器上。

我当前正在使用 Eclipse Luna 并将 Spring MVC Web 应用程序部署到 Tomcat 8 的本地安装。hibernate.cfg.xml 文件当前位于 resources 文件夹中。当我在本地部署它时,效果很好。但是,该配置使用我的个人登录凭据,这不太适合在服务器上让每个人都看到。

我需要的是找出一种设计,使应用程序在本地运行以及在服务器上部署时运行。

我正在考虑创建一个名为 conf 的文件夹,并将 hibernate.cfg.xml 文件放在这里,并通过 Eclipse 类路径(调试为配置...)将其定义为文件夹。这应该允许本地版本仍然读取正确的文件并工作。但我对如何设置服务器端感到困惑。由于我们只需放入 WAR 文件,它就会自动部署。我可以使用 PropertyPlaceholderConfigurer,但这会在我的本地副本上引发错误。

我能想到的唯一的另一件事是创建一个进程,在其中为应用程序创建文件夹,每次将 WAR 文件解压到该文件夹​​中,减去 conf 文件夹。并且仅更新服务器上的 conf 文件夹。

这是一个好的设计还是有更好的方法?我感谢所有对此的帮助和指导!

最佳答案

我让它工作并想我会分享我是如何做到的

我继续在根文件夹中创建了“conf”文件夹。在这里我放置了一个 hibernate.cfg.xml文件,log4j.propertiesmessages.properties文件。然后我创建了一个名为“db”的子文件夹并放置 db.properties文件在那里。

所以结构是:

ApplicationName
--> conf
    --> db
        db.properties
    hibernate.cfg.xml
    log4j.properties
    messages.properties

db.properties
在这个文件中,我放置了hibernate连接信息(和其他信息)

db.driver=oracle.jdbc.driver.OracleDriver
db.dialect=org.hibernate.dialect.Oracle10gDialect
db.default_schema=<schema>

hibernate.session_context=thread
hibernate.max_fetch_depth=20
hibernate.show_sql=false
hibernate.format_sql=true
hibernate.use_sql_comments=false
hibernate.generate_statistics=false

hibernate.c3p0.min_size=1
hibernate.c3p0.max_size=20
hibernate.c3p0.timeout=3000
hibernate.c3p0.max_statements=50
hibernate.c3p0.idle_test_period=300
hibernate.c3p0.preferredTestQuery=SELECT 1 from DUAL

# DEV
db.url=jdbc:oracle:thin:@<url>

# Need to be changed
db.username=<username>
db.password=<password>

hibernate.cfg.xml 文件中只有实体映射

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
  "-//Hibernate/Hibernate Configuration DTD//EN"
  "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <!-- Entity mapping -->
        <mapping class="com.mine.Entity1"></mapping>
        <mapping class="com.mine.Entity2"></mapping>
    </session-factory>
</hibernate-configuration>

HibernateUtil.java 文件中,我添加了以下几行:

Configuration configuration = new Configuration();
configuration.configure();

PropertyResourceBundle prop = (PropertyResourceBundle) ResourceBundle.getBundle("db/db");

// Basic connection information
configuration.setProperty("hibernate.connection.username", prop.getString("db.username"));
configuration.setProperty("hibernate.connection.password", prop.getString("db.password"));
configuration.setProperty("hibernate.connection.url", prop.getString("db.url"));
configuration.setProperty("hibernate.connection.driver_class", prop.getString("db.driver"));
configuration.setProperty("hibernate.dialect", prop.getString("db.dialect"));
configuration.setProperty("hibernate.default_schema", prop.getString("db.default_schema"));

configuration.setProperty("hibernate.current_session_context_class", prop.getString("hibernate.session_context"));

// Handling SQL statements in the logs
configuration.setProperty("show_sql", prop.getString("hibernate.show_sql"));
configuration.setProperty("format_sql", prop.getString("hibernate.format_sql"));
configuration.setProperty("use_sql_comments", prop.getString("hibernate.use_sql_comments"));

// C3P0 Settings
configuration.setProperty("hibernate.c3p0.min_size", prop.getString("hibernate.c3p0.min_size"));
configuration.setProperty("hibernate.c3p0.max_size", prop.getString("hibernate.c3p0.max_size"));
configuration.setProperty("hibernate.c3p0.timeout", prop.getString("hibernate.c3p0.timeout"));
configuration.setProperty("hibernate.c3p0.max_statements", prop.getString("hibernate.c3p0.max_statements"));
configuration.setProperty("hibernate.c3p0.idle_test_period", prop.getString("hibernate.c3p0.idle_test_period"));
configuration.setProperty("hibernate.c3p0.preferredTestQuery", prop.getString("hibernate.c3p0.preferredTestQuery"));

*-servlet.xml文件中:

<bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
    <property name="locations">  
        <list>  
            <value>classpath:db/db.properties</value>  
        </list>  
    </property>  
    <property name="ignoreResourceNotFound" value="false"/>
</bean>

<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
    <property name="basename" value="classpath:messages" />
    <property name="cacheSeconds" value="60"/> 
</bean>

在 Eclipse 中,当我要运行应用程序时,我必须首先转到“调试为... => 调试配置...”。在类路径下,我在用户条目部分下添加 conf 文件夹。

这就是 Eclipse 的内容。当它运行时,它将从 conf 文件夹中提取配置并正常工作。

TOMCAT
为了在服务器上运行它,我首先创建了一个文件夹来存储 conf 的内容。我创建了文件夹/app/properties 。我从 SVN check out 该项目,并将 conf 文件夹的内容复制到新创建的文件夹中。

最后,我进入了$TOMCAT_HOME/conf/catalina.properties并将新文件夹添加到类路径中,方法是将其添加到 shared.loader属性。

就是这样!部署 WAR 时,它会从 /app/properties 中提取信息。位置和应用程序工作。

需要更多信息,请告诉我!

关于java - 应用程序服务器和本地 Eclipse 的 Hibernate 外部配置设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27508327/

相关文章:

java - 获取 SessionBean 实例

java - 使用 JFreeChart <java> 将动态折线图添加到现有 JFrame 中的 JPanel

java - 如何在 jhipster 中创建与额外列的多对多关系?

java - hibernate 5 : generator class ="sequence" not working

java - 如何为区域设置名称创建本地化字符串?

java - 如何使用 Transformer 对 XML 中的字符串进行转义?

java - LinkedList 数组的 setter 和 getter

java - 仅对某些表使用 Hibernate 并将 Hibernate 与 NamedParameterJdbcTemplate 混合使用是否安全?

spring-mvc - 如何生成 swagger.json

java - Eclipse tomcat - 无法显示 index.jsp 页面