SpringBoot项目中自己编写SQL语句并调用

第一步:在 mapper 的接口中定义方法(使用到的PublishVo对象需要自己定义):

第二步:在 mapper 对应的 xml 文件中写 SQL 语句:

注意:xml 文件中 select 标签的 id 属性就是上一步在 mapper 接口中定义的那个方法名,resultType 就是返回的类型,在上一步的 mapper 接口中的返回类型是自定义的实体类型 PublishVo,因此就写上实体类 PublishVo 的全路径。SQL语句的条件值要使用#,不能使用$,因为$会产生SQL注入问题。

第三步: 在 Controller 中编写 mapper 的调用

第四步:编写 service:

第五步:编写 service 的实现类:

然后再前端写方法调用后端的接口即可 

Spring Boot项目,可以使用MyBatis作为ORM框架来实现在SQL语句的分页。MyBatis提供了RowBounds类来进行分页查询,下面是实现分页查询的步骤: 1. 在MyBatis的mapper文件编写SQL语句,例如: ``` <select id="getUserList" resultMap="userResultMap"> select * from user </select> ``` 2. 在Spring Boot项目配置MyBatis,例如: ``` @Configuration @MapperScan("com.example.demo.mapper") public class MyBatisConfig { @Bean public SqlSessionFactoryBean sqlSessionFactoryBean() throws Exception { SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean(); sessionFactory.setDataSource(dataSource()); sessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath*:mapper/*.xml")); return sessionFactory; } @Bean public DataSource dataSource() { DriverManagerDataSource dataSource = new DriverManagerDataSource(); dataSource.setDriverClassName("com.mysql.jdbc.Driver"); dataSource.setUrl("jdbc:mysql://localhost:3306/test"); dataSource.setUsername("root"); dataSource.setPassword("root"); return dataSource; } } ``` 3. 在mapper文件使用RowBounds进行分页查询,例如: ``` <select id="getUserList" resultMap="userResultMap"> select * from user <where> <if test="name != null and name != ''"> and name like concat('%', #{name}, '%') </if> </where> order by id desc <if test="startIndex != null and pageSize != null"> limit #{startIndex}, #{pageSize} </if> </select> ``` 4. 在Java代码调用mapper方法进行分页查询,例如: ``` @Autowired private UserMapper userMapper; public List<User> getUserList(String name, Integer startIndex, Integer pageSize) { RowBounds rowBounds = new RowBounds(startIndex, pageSize); return userMapper.getUserList(name, rowBounds); } ``` 其,startIndex和pageSize是分页查询的参数,需要在mapper使用if标签进行判断,如果有值则使用limit关键字进行分页查询。getUserList方法使用RowBounds对象进行分页查询。
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值