mybatis配置oracle时,自己遇到问题

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

首先说下mybatis配置oracle的配置文件,mybatis-config.xml


    
        
            
            
                
                
                
                
            
        
    
    
        
    

看大家的都直接是这个样子的,但是自己建立数据库的时候有些地方是需要改动的,首先,driver是驱动程序,这个要加到maven里面。(pom这种是不正确的maven)。

然后要注意URL,@后面的东西都是需要自己改动的,首先,localhost是指:,1521 : 是端口号,INAS:你建立的数据库的类型。username和password都是数据库的指令(用户名和密码)。

mybatis里面sql语句的xml文件。userMapper.xml





    

暂时先写个查询的,明天再写插入的。

新入门,希望大家多多指教。(*╯3╰)

一直说写插入,还一直没写,现在把剩下的补全


    insert into users(id,userName,requestInfo,requestTime) values(#{id}, #{userName},#{requestInfo},#{requestTime})



    update users set responseInfo = #{responseInfo},responseTime = #{responseTime} where id=#{id}



    delete from users where id=#{id}

这就是常用的sql语句。

可以使用spring管理数据库,添加applicationContext-database.xml文件,把数据库配置可以放进该文件中,这样可以使用spring管理。

 

还看到些关于MySQL的配置文件,放在一起,以后方便使用:

 
 

 

转载于:https://my.oschina.net/hxflar1314520/blog/685097

你可能感兴趣的:(mybatis配置oracle时,自己遇到问题)