`
小嘴冰凉
  • 浏览: 455924 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

spring的一些简单配置

阅读更多
<?xml version="1.0" encoding="UTF-8"?>
<!--
  - Middle tier application context definition for the image database.
  -->
<beans xmlns="http://www.springframework.org/schema/beans"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xmlns:context="http://www.springframework.org/schema/context"
		xmlns:tx="http://www.springframework.org/schema/tx"
		xmlns:aop="http://www.springframework.org/schema/aop"
		xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
				http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
				http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
				http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
				">
	<aop:aspectj-autoproxy/>
	<context:property-placeholder location="jdbc.properties" />
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
		<property name="driverClass" value="${jdbc.driverClassName}"/>
		<property name="jdbcUrl" value="${jdbc.url}"/>
		<property name="user" value="${jdbc.username}"/>
		<property name="password" value="${jdbc.password}"/>
	</bean>
	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<property name="mappingResources">
			<list>
				<value>Person.hbm.xml</value>
			</list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.show_sql">true</prop>
				<prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
			</props>
		</property>
		<property name="dataSource" ref="dataSource"/>
	</bean>
	<bean id="springhibernat" class="org.testspring.springhibernate.GetPersonState">
		<property name="sf" ref="sessionFactory" />
	</bean>
	<tx:annotation-driven transaction-manager="transationManager" />
	<bean id="transationManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
	<property name="sessionFactory" ref="sessionFactory"/>
	</bean>
</beans>

分享到:
评论

相关推荐

    spring一些简单的例子

    在这个名为"spring一些简单的例子"的压缩包中,你可能会找到一系列帮助初学者理解并掌握Spring框架基础知识的代码示例。以下是一些相关的知识点和详细说明: 1. **依赖注入(Dependency Injection)**:Spring的...

    SpringCloud——分布式配置中心(Spring Cloud Config)

    总结起来,Spring Cloud Config 是一个强大的工具,它使得在分布式系统中管理配置变得更加简单和高效。通过理解其核心概念、配置方式以及如何实现高可用性,我们可以更好地利用它来构建可扩展和灵活的微服务架构。

    Spring的基本配置

    在提供的`ConsoleAppSpring`可能是Spring应用的控制台应用程序示例,它展示了如何在命令行环境下运行一个简单的Spring应用,可能包含读取配置、启动Spring容器、执行特定业务逻辑等步骤。 总结,Spring的基本配置...

    spring配置的简单案例.zip

    spring配置的简单案例.zip spring配置的简单案例.zip spring配置的简单案例.zip spring配置的简单案例.zip spring配置的简单案例.zip spring配置的简单案例.zip spring配置的简单案例.zip spring配置的简单案例.zip ...

    Spring Security简易配置指南

    在本文档中,我们将探讨如何进行Spring Security的简易配置,以确保你的应用在Spring框架下得到有效的安全保护。 首先,你需要在项目中集成Spring Security。这通常涉及到以下几个步骤: 1. **引入依赖**:从...

    spring 下载与配置

    在本篇文章中,我们将深入探讨如何下载并配置Spring框架。 首先,我们来了解如何下载Spring框架。Spring的官方网站是https://spring.io,你可以在这个网站上找到所有Spring项目,包括Spring Core、Spring Boot、...

    SpringCloud.03.网关Gateway 配置文件

    全局属性可以设置一些通用配置,如超时时间、重试策略等。例如,设置全局超时时间为1秒: ```yaml spring: cloud: gateway: globalcors: cors-configurations: '[/**]': allowedOrigins: "*" ...

    SpringColud1简易分布式

    SpringColud1简易分布式 ● cloud-config-server:配置服务器-(通过git获取配置) ● cloud-eureka-server:eureka注册服务器 ● cloud-simple-service:一个使用mybatis的数据库应用,服务端 ● cloud-simple-...

    spring security 项目配置源码

    - 查看`SecurityConfig`类,这是Spring Security的核心配置,它扩展了`WebSecurityConfigurerAdapter`并覆盖了一些关键方法。 - 学习`UserDetailsService`接口的实现,理解如何存储和检索用户信息。 这个"Spring ...

    spring MVC简单示例

    在本示例中,我们将深入探讨Spring MVC的基本概念、配置以及如何创建一个简单的应用程序。 1. **Spring MVC 概述** Spring MVC 是 Spring 框架的一部分,它简化了开发和测试Web应用程序的过程。通过分离业务逻辑、...

    spring的定时器设置

    在本主题"spring的定时器设置"中,我们将深入探讨Spring如何配置定时任务,主要关注2.x和3.x版本的区别。 一、Spring 2.x 定时任务 在Spring 2.x中,定时任务主要是通过`org.springframework.scheduling.timer`包...

    spring boot 简单案例下载

    在“spring boot 简单案例下载”中,我们可以推测这是一个包含了一些基本的 Spring Boot 示例项目的压缩包。这些示例可能是为了帮助初学者理解和学习 Spring Boot 的核心特性而准备的。下面,我们将深入探讨 Spring ...

    spring和mybatis整合配置

    6. **配置Spring MVC**:如果项目中还包含了Spring MVC,那么还需要配置DispatcherServlet,设置视图解析器、模型数据绑定、拦截器等。 7. **测试**:完成上述配置后,通过单元测试或者运行应用进行测试,确保...

    SpringSecurity 3配置文件

    通过调整配置,我们可以构建出满足各种安全需求的应用,从简单的登录验证到复杂的访问控制策略,Spring Security都能提供强大支持。在实际项目中,应根据项目规模和安全要求,适当地调整和优化配置,确保应用的安全...

    stute+spring+helete配置文件

    1. `struts2.properties`: 这是一个属性文件,用于设置Struts2的一些全局配置选项。例如: - `struts.tag.altSyntax = true` 启用短标签语法。 - `struts.devMode = true` 开启开发模式,提供更丰富的错误信息。 ...

    spring简单的缓存

    参考链接提供的CSDN博客文章《[Spring简单缓存实现](http://blog.csdn.net/maoyeqiu/article/details/50238035)》中,作者详细介绍了如何在Spring项目中实现缓存,包括配置、注解使用以及注意事项,是一个很好的学习...

    springmvc + spring + mybatis + maven整合配置文件

    接着配置Spring MVC的servlet-context.xml,设置DispatcherServlet、视图解析器、拦截器等。最后,配置MyBatis的mybatis-config.xml,以及Mapper接口和XML映射文件。 在testmybatis这个示例中,可能包含了一个简单...

    spring vue简单示例

    3. 启动端点:设置Spring Boot的静态资源路径,确保Vue.js文件能够被服务器正确地访问。 **四、用户管理功能实现** 1. 后端API:使用Spring MVC创建RESTful API,处理用户注册、登录、查询等操作。可以结合Spring ...

    Spring Tool Suite 搭建tomcat配置调试环境

    通过上述步骤,我们成功地在Spring Tool Suite中配置了Tomcat服务器,创建了一个简单的Web项目,并进行了调试。这对于Spring开发者来说是一个基本但至关重要的工作流程,确保了开发环境的顺畅运行。在实际开发中,...

Global site tag (gtag.js) - Google Analytics