spring的配置文件怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring的配置文件怎么写相关的知识,希望对你有一定的参考价值。
标准的Spring配置文件编写:<?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:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
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"
default-autowire="byName" default-lazy-init="true">
<!-- 配置数据源 -->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName">
<value>com.mysql.jdbc.Driver</value>
</property>
<property name="url">
<value>
jdbc:mysql://localhost/ssh?characterEncoding=utf-8
</value>
</property>
<property name="username">
<value>root</value>
</property>
<property name="password">
<value>123</value>
</property>
</bean>
<!--配置SessionFactory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="mappingResources">
<list>
<value>com/ssh/pojo/User.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
<!-- 事务管理 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
<!-- hibernateTemplate -->
<bean id="hibernateTemplate"
class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
<!-- 配置数据持久层 -->
<bean id="userDao"
class="com.ssh.dao.impl.UserDaoImpl">
<property name="hibernateTemplate" ref="hibernateTemplate"></property>
</bean>
<!-- 配置业务逻辑层 -->
<bean id="userService"
class="com.ssh.service.impl.UserServiceImpl">
<property name="userDao" ref="userDao"></property>
</bean>
<!-- 配置控制层 -->
<bean id="UserAction"
class="com.ssh.action.UserAction" scope="prototype">
<property name="userService" ref="userService"></property>
</bean>
<!-- 配置pojo -->
<bean id="User" class="com.ssh.pojo.User" scope="prototype"/>
</beans> 参考技术A <?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://localhost:3306/yonghu"></property>
<property name="username" value="root"></property>
<property name="password" value="root"></property>
<property name="maxActive" value="100"></property>
<property name="maxIdle" value="30"></property>
<property name="maxWait" value="500"></property>
<property name="defaultAutoCommit" value="true"></property>
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>beans/Users.hbm.xml</value>
</list>
</property>
</bean>
<bean id="userDao" class="DAOImpl.userDaoImpl">
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>
<bean id="userService" class="ServiceImpl.userServiceImpl">
<property name="userDao" ref="userDao"></property>
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>
<bean id="saveUser" class="actions.saveUser">
<property name="userService" ref="userService"></property>
</bean>
</beans>
就是action层调用service层 service层调用dao层 dao层调用sessionFactory sessionFactory调用datasource 参考技术B <bean id="..." class="....">
这是最基本的本回答被提问者采纳 参考技术C 帮助文档收<beans>里面很详细的介绍了
springboot application.properties 写多个配置文件怎么写
参考技术A 我的文章:《Springboot 之 多配置文件》里面有:在程序开发过程中可能会有这样的需求:开发和部署的配置信息可能会不同,以传统的方式就是在配置文件里面写好配置,在部署的时候再去修改这些配置,这样肯定会有很多问题,比如忘记修改、修改错误等。 而Springboot提供了多配置文件的支持解决了这一问题。
Springboot的多配置文件是指:系统中存在多个配置文件,在不同的运行环境使用不同的配置文件即可。
创建测试项目
新建的study04项目的文件结构如下:
|-study04(项目名称)
| - src
| | - main
| | | - java
| | | | - com.zslin
| | | | | - RootApplication.java
| | | - resources
| | | | - application.properties
| | | | - application-dev.properties
| | | | - application-test.properties
| | - test
| | | - java
| | | | - com.zslin
| | | | | - MyTest.java
| - pom.xml
| - study04.iml
RootApplication.java
@SpringBootApplication
public class RootApplication
public static void main(String [] args)
SpringApplication.run(RootApplication.class, args);
这个Java文件没有什么特别,只是一个最基本的Springboot的入口
application.properties
spring.profiles.active=dev
在核心配置文件里面的spring.profiles.active=dev这个设置表示系统默认使用dev(即application-dev.properties)中的配置。
application-dev.properties
server.port=2222
test.msg=this is dev config
在这个配置文件里面只设置了端口为2222,和配置test.msg为this is dev config
application-test.properties
server.port=1111
test.msg=this is test config
在这个配置文件里面和application-dev.properties中的配置一样,只是对应值有所不同。
现在在系统中已经有两种不同的配置信息,只是默认是使用application-dev.properties中的配置。
MyTest.java
@RunWith(SpringRunner.class)
@SpringBootTest
public class MyTest
@Value("$test.msg")
private String msg;
@Test
public void testConfig()
System.out.println("cur msg is : "+ msg);
这里的输入结果是:cur msg is : this is dev config,说明现在使用的配置文件是application-dev.properties
注意: 当将application.properties的内容修改为spring.profiles.active=test后,再运行这个测试方法时将得到结果:cur msg is : this is test config
在单元测试中指定配置文件
@RunWith(SpringRunner.class)
@SpringBootTest
@ActiveProfiles("test")
public class MyTest2
@Value("$test.msg")
private String msg;
@Test
public void testConfig()
System.out.println("cur msg is : "+ msg);
MyTest2与MyTest唯一的区别就是在MyTest2的类上多加了一个注释@ActiveProfiles("test"),加上这个注释就表示现在使用application-test.properties这个配置文件,同样换成dev也就是使用application-dev.properties中的配置。
运行测试方法即可得到对应配置文件中的信息。
启动项目时指定不同的配置文件
启动项目的方法一般有两种 :
1、 运行RootApplication中的main方法。
2、 使用命令:mvn spring-boot:run
这两方法默认都是使用application.properties中的配置信息,如果有指定spring.profiles.active则使用指定的配置信息,这种方式一般用在产品运行时,在开发和测试的时候则需要指定配置文件。
运行main可以在运行里的Config里面来配置,这个我基本没有使用过,我用的是第二种方法:
mvn spring-boot:run -Dspring.profiles.active=dev 即使用application-dev.properties中的配置信息,此时可以看到控制台显示系统使用的端口是dev中的2222
多配置文件这块我应用的较多的是在数据库的配置,开发过程中的数据库肯定是在本机,用户名和密码也是本机数据库的,而当项目部署到服务器时,数据库的地址、用户名和密码就得修改,所以使用了多配置文件,只需要在启动项目的时候指定配置文件即可。
示例代码:https://github.com/zsl131/spring-boot-test/tree/master/study04
以上是关于spring的配置文件怎么写的主要内容,如果未能解决你的问题,请参考以下文章
springboot application.properties 写多个配置文件怎么写
springboot application.properties 写多个配置文件怎么写