Spring配置bean连接数据库两种方法:
(1)直接在.xml文件内部配置:
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://.primary.spring.beans.properties; import java.sql.SQLException; import javax.sql.DataSource; import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext; public class Main { public static void main(String[] args) throws SQLException { ApplicationContext ctx = new ClassPathXmlApplicationContext("beans-properties.xml"); DataSource dataSource = (DataSource) ctx.getBean("dataSource"); System.out.println(dataSource.getConnection()); }}测试结果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。