在哪里可以找到示例applicationContext.xml文件 [英] Where can I find the example applicationContext.xml file

查看:95
本文介绍了在哪里可以找到示例applicationContext.xml文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Spring 3发行版中,有一个项目文件夹,打包在发行版中.该项目文件夹中有可以使用的示例applicationContext.xml文件.但是,当我从此处下载了Spring 4发行版时它没有项目文件夹,我无法找到示例applicationContext.xml.在哪里可以找到示例applicationContext.xml文件.

With Spring 3 distribution there was a project folder which was packaged in the distribution . This project folder had sample applicationContext.xml file which can be used . However when I have downloaded Spring 4 distribution from here it does not come with a project folder and I am not able to find the sample applicationContext.xml. Where can I find the example applicationContext.xml file.

推荐答案

您可以将其用作更多信息,请检查

You can use this for further information check here.

下面的示例包含以下配置:

Below sample contains configuration as follows:

  • 以组件扫描为基础的com.foo,它以您的根文件夹为准.
  • 基本数据源定义.
  • 属性占位符文件(database.properties)
  • 用于本地化支持的消息源.

示例ApplicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:c="http://www.springframework.org/schema/c"
    xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-4.1.xsd">

    <context:property-placeholder location="classpath:/database.properties" />
    <context:component-scan base-package="com.foo" />


    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="${jdbc.driverClassName}" />
        <property name="url" value="${jdbc.url}" />
        <property name="username" value="${jdbc.username}" />
        <property name="password" value="${jdbc.password}" />
        <property name="initialSize" value="5" />
        <property name="maxActive" value="10" />
    </bean>

    <bean id="messageSource"
        class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basename" value="messages" />
    </bean>

</beans>

这篇关于在哪里可以找到示例applicationContext.xml文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆