springdate单元测试

xiaoxiao2021-02-28  90

<?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:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-tx-3.0.xsd ">    <!-- 扫描包 -->     <!-- 配置数据源 --><!--      <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">       <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"></property> <property name="url" value="jdbc:oracle:thin:@localhost:1521:orcl"></property> <property name="username" value="scott"></property> <property name="password" value="tiger"></property>      </bean>      -->   <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">       <property name="driverClassName" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"></property> <property name="url" value="jdbc:sqlserver://localhost:1433;DatabaseName=COODB;"></property> <property name="username" value="sa"></property> <property name="password" value="123456"></property>      </bean>

</beans>

----------------------------------

package com.yanshu; import java.sql.SQLException; import javax.sql.DataSource; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import junit.framework.TestCase; public class JDBCTest { private ApplicationContext app=null; { app=new ClassPathXmlApplicationContext("spring-mybatis.xml"); } @Test public void testData() throws SQLException  { DataSource data=app.getBean(DataSource.class); System.out.println(data.getConnection()); } }

转载请注明原文地址: https://www.6miu.com/read-55501.html

最新回复(0)