摘要:
一、properties属性在使用 properties 标签配置时,我们可以采用两种方式指定属性配置1)直接在主配置文件中定义数据库连接信息 2)引入外部配置文件在 classpath 下定义jdbcConfig.properties文件jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:... 阅读全文
摘要:
一、增删改查1.1、根据id查用户1)持久层添加方法public interface UserMapper { //通过id查询用户 User findUserById(Integer id);}2)配置文件配置3)测试package com.dianchou.test;import com.dianchou.dao.UserMapper;import com.dianchou.dom... 阅读全文