現在、SpringとHibernateでMavenマルチモジュールプロジェクトを作成しています。私はspring-dispature.xml
をどこに置いてBeanの設定にアクセスする必要があるのか混乱しています。現在、[core-web][core-service(request mapping)][core-bal(bal layer)][core-dal(implementation layer)]
と[core-model(data access layer)]
があります。MavenマルチモジュールプロジェクトでSpring Hibernate設定
をcore-bal
に入れました。
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context" xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<!--Scan Merchandising Rest Services for Beans Defined In this Context -->
<context:component-scan base-package="com.hrcs.bal.userProfile.impl">
</context:component-scan>
<bean id="loginDal" class="com.hrcs.dal.userProfile.impl.LoginDalImpl" />
今、どこで見るリゾルバを配置する必要がありますでしょうか?