petclinic-servlet.xml從何處引發的?(在什麼地方被配置載入?)

234aini發表於2006-01-01
再spring自帶的例子petclinic裡面。。。。
配置檔案裡面有個petclinic-servlet.xml,不知道他是什麼地方引發的?
意思就是:
比如applicationcontext-hibernate.xml有在web.xml裡面這樣配置:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext-hibernate.xml</param-value>
</context-param>
從而可以預設載入applicationcontext-hibernate.xml裡面的配置選項!

但是我找了所有的配置檔案,都找不導對petclinic-servlet.xml的載入配置?
誰可以告訴我原因嗎?

還有一個問題是:在這樣一段配置裡面:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="mappingResources">
<value>petclinic.hbm.xml</value>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.generate_statistics">true</prop>
${hibernate.dialect}的那一段引用在哪裡有配置?

再一個問題:
petclinic.root在哪裡配置過?

相關文章