zoukankan      html  css  js  c++  java
  • Spring 与hibernate 整合,测试数据连接

    image

    package com.atguigu.spring.hibernate.entities;
    
    public class Account {
    	 private Integer id;
    	 private String username;
    	 private Integer balance;
    	public Integer getId() {
    		return id;
    	}
    	public void setId(Integer id) {
    		this.id = id;
    	}
    	public String getUsername() {
    		return username;
    	}
    	public void setUsername(String username) {
    		this.username = username;
    	}
    	public Integer getBalance() {
    		return balance;
    	}
    	public void setBalance(Integer balance) {
    		this.balance = balance;
    	}
    	 
    }
    package com.atguigu.spring.hibernate.entities;
    
    public class Book {
    	private Integer id;
    	private String bookname;
    	private String isbn;
    	private int price;
    	private int stock;
    
    	public Integer getId() {
    		return id;
    	}
    
    	public void setId(Integer id) {
    		this.id = id;
    	}
    
    	public String getBookname() {
    		return bookname;
    	}
    
    	public void setBookname(String bookname) {
    		this.bookname = bookname;
    	}
    
    	public String getIsbn() {
    		return isbn;
    	}
    
    	public void setIsbn(String isbn) {
    		this.isbn = isbn;
    	}
    
    	public int getPrice() {
    		return price;
    	}
    
    	public void setPrice(int price) {
    		this.price = price;
    	}
    
    	public int getStock() {
    		return stock;
    	}
    
    	public void setStock(int stock) {
    		this.stock = stock;
    	}
    
    }
    
    
    
    
        
            
                
                
            
            
                
            
            
                
            
            
                
            
            
                
            
        
    
    package com.atguigu.spring.hibernate.test;
    
    
    
    import java.sql.SQLException;
    
    import javax.sql.DataSource;
    
    import org.junit.Test;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    public class SpringHibernateTest {
    	private ApplicationContext ctx=null;
    	{
    		ctx =new ClassPathXmlApplicationContext("applicationContext.xml");
    	}
    
    	@Test
    	public void testDataSource() throws SQLException  {
    		DataSource dataSource=ctx.getBean(DataSource.class);
    		System.out.println(dataSource.getConnection());
    	}
    
    }
    
    
    
        
        
        
        
        
        
        
        
        
        
    
    
    jdbc.user=root
    jdbc.password=21323
    jdbc.driverClass=com.mysql.jdbc.Driver
    jdbc.jdbcUrl=jdbc:mysql:///test1
    
    jdbc.initialPoolSize=5
    jdbc.maxPoolSize=10
    #...
    
    
    
    	
    		org.hibernate.dialect.MySQL5InnoDBDialect
    		true
    		true
    		update
    	
    
  • 相关阅读:
    linux下ssh端口的修改和登录
    linux找回密码
    XAMPP命令之LAMPP
    VirtualBox 复制vdi文件和修改vdi的uuid
    探讨PHP页面跳转几种实现技巧
    CSS盒模型和margin重叠
    8--数组旋转
    9--斐波那契数列
    7--动态规划
    6--树的遍历
  • 原文地址:https://www.cnblogs.com/xiaofeng01/p/7073336.html
Copyright © 2011-2022 走看看