0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

seasar2のお勉強2(Seasar2徹底入門の2.7 のコンポーネントの自動登録あたり)

Last updated at Posted at 2017-10-29

こんな感じに設定ファイルを書くと行ける

  <!-- コンポーネントの自動登録 -->
  <component class="org.seasar.framework.container.autoregister.ComponentAutoRegister">
	  <!-- instanceDefは省略するとsingleton -->
	  <!-- autoBindingは省略するとauto -->
	  <!-- DefaultAutoNaming機構を使うとクラスの完全修飾名からパッケージ部分を除き、
	  最後がImplまたはBeanで終わっていたら削除し、 先頭を小文字にした名前をコンポーネントの名前に設定します。
	  例えば、aaa.HogeImplクラスの場合、コンポーネント名は、hogeになります。は省略するとsingleton -->

      <!--  検索の起点となるクラスを指定する。これ指定しないと何も見つからない -->
	  <initMethod name="addReferenceClass">
	      <arg>@hello.componentautoregister.MainCaller@class</arg>
	  </initMethod>

      <!--  検索パターンをしていhelloパッケージ配下(サブ含む)のImplメソッドが対象になる -->
	  <initMethod name="addClassPattern">
	      <arg>"hello"</arg>
	      <arg>".*Impl"</arg>
	  </initMethod>
  </component>

実際に使っている例。

package hello.componentautoregister;

import org.seasar.framework.container.SingletonS2Container;
import org.seasar.framework.container.factory.SingletonS2ContainerFactory;;

public class MainCaller {

	public static void main(String[] args) {

		// S2コンテナの初期化
		SingletonS2ContainerFactory.setConfigPath("app2.dicon");
		SingletonS2ContainerFactory.init();

		// IMessageProviderIFを実装したコンポーネントを取得(コメントアウトしてるクラス指定でもいけます)
		//MessageProvider messageProvider = SingletonS2Container.getComponent(MessageProvider.class);
		MessageProvider messageProvider = SingletonS2Container.getComponent("messageProvider");
		// メッセージを出力
		System.out.println(messageProvider.getMessage());

		// S2コンテナの破棄
		SingletonS2ContainerFactory.destroy();

	}

}

MessageProviderとかは前回から微妙に名前変えてて以下のようになってます。

Clipboard01.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?