SpringBoot学习笔记 (三):简单的后端增删改查Restful API

效果:

添加页面:
在这里插入图片描述
成功则跳转add页面,返回 save success
在这里插入图片描述
失败返回 save failed
在这里插入图片描述
查询全部页面
在这里插入图片描述

实现

项目结构

在这里插入图片描述

MainController代码
@Controller
@RequestMapping("/user")
public class MainController {
	
	@Autowired
	CityService cityService;
	
	@RequestMapping("/list")
	public String list(ModelMap map) {
		List<City> cities = cityService.findAll();
		map.addAttribute("list", cities);
		
		return "list";
	}
	
	@RequestMapping("/add")
	public String add(@RequestParam("id") Integer id, @RequestParam("name") String name, ModelMap map) {
		String success = cityService.add(id,name);
		map.addAttribute("flag", success);
System.out.println(success);
		return "add";
	}
	
	@RequestMapping("/addPage")
	public String addPage() {
		return "add";
	}
}
CityDao代码
@Repository
public class CityDao {

	static Map<Integer, City> dataMap = Collections.synchronizedMap(new HashMap<Integer, City>());
	
	public List<City> findAll() {
		
		return new ArrayList<>(dataMap.values());
	}

	public void save(City city) throws Exception {
		
		City data = dataMap.get(city.getId());
		if (data != null) {
			throw new Exception("Data is already exist");
		} else {
			dataMap.put(city.getId(), city);
		}
	}

}
City代码
public class City {
	
	private Integer id;
	private String name;
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	
}
CityService代码
@Service
public class CityService {

	@Autowired
	private CityDao cityDao = new CityDao();
	
	public List<City> findAll() {
		return cityDao.findAll();
	}

	public String add(Integer id, String name) {
		
		City city = new City();
		city.setId(id);
		city.setName(name);
		try {
			cityDao.save(city);
			return "save success";
		} catch (Exception e) {
			return "save failed";
		}
	}

}
add.html代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<span th:text="${flag}"></span>
	<form action="add" method="post">
		id: <input type="text" name="id">
		name: <input type="text" name="name">
		<input type="submit" value="提交">
	</form>
</body>
</html>
list.html代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<table border="1">
		<tr>
			<th>ID</th>
			<th>Name</th>
		</tr>
		<tr th:each="var : ${list}">
			<td th:text="${var.id}"></td>
			<td th:text="${var.name}"></td>
		</tr>
	</table>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值