petclinic-servlet.xml从何处引发的?(在什么地方被配置载入?)

再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在哪里配置过?

不好意思,没编辑好!
对不住!

不过我贴上来的配置代码似乎被过滤掉了!