spring 配置 sqlserver2008

方式一:

  
          
            com.microsoft.sqlserver.jdbc.SQLServerDriver  
          
          
            jdbc:sqlserver://localhost:1434;database=selfStudySystem;integratedSecurity=false  
           
          
            sa  
          
          
            root  
                 
      

方式二:

beans.xml


		
		
		
		
	


jdbc.properties:

jdbc.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
jdbc.url=jdbc:sqlserver://localhost:1434;database=selfStudySystem;integratedSecurity=false
jdbc.username=sa
jdbc.password=root

你可能感兴趣的:(ssh)