7

local.properties、dev.properties など、環境ごとにファイル名が異なるプロパティ ファイルからプロパティを読み取ろうとしています。これらのプロパティ ファイルには、ホストなどの対応する mongodb インスタンスの接続情報のみが含まれます。 、ポート、およびデータベース名。通常、この種のことはアプリ サーバーの JNDI 定義で行われますが、現在、Mongo 用の実装はありません。

私は WebLogic 10.3.6 を使用しているため、サーブレット 3.0 仕様を使用できないため、Spring の Java 構成を使用できず、現時点では XML のみを使用できます。したがって、私が使用しようとしているアプローチは、web.xml で contextInitializerClass context-param を定義し、それを ApplicationContextInitializer を実装するクラスに設定し、Spring アクティブ プロファイルを手動で設定することです。ただし、WebLogic の起動時または再デプロイ時に、どちらもカス​​タム初期化クラスを呼び出しておらず、プロファイルが設定されていません。

私の質問は、Spring の contextInitializerClass は Servlet 3.0 に依存していますか、それとも他に欠けているものがありますか?

私が定義したコード:

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<context-param>
    <param-name>contextInitializerClass</param-name>
    <param-value>com.myapp.spring.SpringContextProfileInit</param-value>
</context-param>

<!-- Location of spring context config -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</context-param>
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>      
...

SpringContextProfileInit.java

public class SpringContextProfileInit implements ApplicationContextInitializer<ConfigurableWebApplicationContext> {

    private static final Logger log = LoggerFactory.getLogger(SpringContextProfileInit.class);

    public SpringContextProfileInit() {
        log.debug("Got the constructor");
    }

    @Override
    public void initialize(ConfigurableWebApplicationContext ctx) {
        ConfigurableWebEnvironment environ = ctx.getEnvironment();
        log.debug("Got the environment, no profiles should be set: "+ environ.getActiveProfiles());

        /*
        * Here I am setting the profile with a hardcoded name.  In the real app,
        * I would read from a separate properties file, always named app.properties
        * which would live on the app server's classpath.  That app.properties file
        * would contain a property directing the Spring Profile to use.
        */
        environ.setActiveProfiles("local");
        log.debug("Now should be set to local: "+ environ.getActiveProfiles());
        ctx.refresh();
    }

}

サーブレット-context.xml

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mongo="http://www.springframework.org/schema/data/mongo" 
    xmlns:c="http://www.springframework.org/schema/c"
xmlns:p="http://www.springframework.org/schema/p" 
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xmlns:cache="http://www.springframework.org/schema/cache"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/data/mongo
http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd
    http://www.springframework.org/schema/data/jpa
    http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
    http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
   http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd">
<context:property-placeholder properties-ref="deployProperties" />
...
<beans profile="local">
    <bean id="deployProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"
            p:location="WEB-INF/local.properties" />
</beans>
<beans profile="beast, dev">
    <bean id="deployProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"
            p:location="WEB-INF/dev.properties" />
</beans>
</beans>

アプリケーションをデプロイしようとすると NoSuchBeanDefinitionException:No bean named 'deployProperties' is defined 、プロファイルが設定されていない場合に予想される例外が発生します。ログには、デバッグ ステートメントが出力されたことが示されません。また、contextInitializerClass パラメータを DispatcherServlet の init-param に移動しようとしましたが、同じ結果が得られました。

私の制約はそれです

  1. 当社は同じアーティファクトを使用してすべての環境にプッシュするため、Maven スクリプト内からプロファイルを設定できません。

  2. また、コンテナに依存しているため、WebLogic のバージョンを変更したり、最新のサーブレット仕様を使用したりすることもできません。

私の現在のバージョンは次のとおりです。

  • 春 3.1.2.RELEASE
  • WebLogic 10.3.6
  • javax.servlet-api 2.5

他の誰かがこの問題を見て、初期化クラスをロードする方法を知っていますか? または、私がやろうとしていることを行うためのより良い方法はありますか?

これは、回答されていない別の投稿者の質問に関連しているようです: Spring MVC 3.1 Using Profiles for environment specific Hibernate settings

4

1 に答える 1

7

context-param の名前は間違っていると思いますが、そうであってはなりcontextInitializerClassesませんcontextInitializerClass。それが ApplicationContextInitializer が取得されない理由である可能性があります

ContextLoaderListenerまた、web.xml ファイルのエントリが欠落しているようです。それも追加してみてください。

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

contextConfigLocationこれは、タグで指定された Bean 構成 xml ファイルをロードするものです。

于 2012-11-04T00:57:23.167 に答える