实训感受
1、(1)今天实现了SSM框架的最后一个功能,批量删除,其中学习了一个新的内容:ajax,进行异步操作。(2)学习了在IDEA里提交git代码。(3)构建springboot项目,并实现简单的显示。
2、小组项目整合完毕,虽然大多数代码是仿照老师教的来写的,但是自己来实现一下也是挺好的。
实训流程
1、完成SSM项目的批量删除
2、学习在IDEA提交代码到git仓库
3、学习springboot框架,并实现简单的显示功能
4、提交小组项目代码
课堂任务编码实现
UserMapper
新增:
<delete id="deleteAll" >
delete from tb_user where id in
<foreach collection="ids" item="id" open="(" close=")" separator=",">
#{id}
</foreach>
</delete>
UserController层
新增:
@PostMapping("deleteAll.do")
@ResponseBody
public String deleteAll(String userList){
String[] strings = userList.split(",");
List<Integer> ids=new ArrayList<>();
for(String s:strings){
ids.add(Integer.parseInt(s));
}
userService.deleteAll(ids);
return "";
}
其他部分相应的增添函数即可。
课堂项目成果展示
选择
点击“删除”,即可完成删除操作
Ajax
Web 应用程序都使用请求/响应模型从服务器上获得完整的 HTML 页面。常常是点击一个按钮,等待服务器响应,再点击另一个按钮,然后再等待,这样一个反复的过程。有了 Ajax 和 XMLHttpRequest 对象,就可以使用不必让用户等待服务器响应的请求/响应模型了,针对局部请求做出响应。
Springboot项目实现
application.yml
server:
port: 8081
spring:
datasource:
url: jdbc:mysql://localhost:3306/whlg?characterEncoding=utf-8&serverTimezone=Asia/Shanghai
driver-class-name: com.mysql.cj.jdbc.Driver
username: root
password: wangdan123456
mybatis:
type-aliases-package: com.zr.bean
mapper-locations: classpath:mapper/*.xml
UserMapper.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.zr.dao.UserDao">
<select id="findAll" resultType="user">
select * from tb_user
</select>
</mapper>
controller层
package com.zr.controller;
import com.zr.bean.User;
import com.zr.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@Controller
@ResponseBody
@RequestMapping("hello")
public class HelloSpringboot {
@Autowired
private UserService userService;
@RequestMapping("s")
public String hello(){
return "hello springboot";
}
@RequestMapping("find")
public String find(){
List<User> all=userService.findAll();
return all.toString();
}
}
项目运行结果截图:
运行成功
显示用户信息
遇到的问题
1、在IDEA上传代码到git时,一直传不上去:
将setting->commit配置改为如下即可:
2、创建不了springboot项目
此时可以用阿里的镜像,创建项目速度快了很多:
3、写完springboot的项目后,一直无法显示内容,且报错,原因是Application启动类的位置不对.要将Application类放在最外侧,即包含所有子包。
原因:spring-boot会自动加载启动类所在包下及其子包下的所有组件。