@恒宇少年
public UserEntity save(@RequestParam(value = "name") String name,
@RequestParam(value = "age") int age,
@RequestParam(value = "address") String address) {
UserEntity Entity=new UserEntity();
Entity.setT_name(name);
Entity.setT_age(age);
Entity.setT_address(address);
return userJpa.save(Entity);
}
这是我改的save方法,需要用RequestParam获取参数,请问不用RequestParam是怎么实现参数获取的?
第三章:SpringBoot使用SpringDataJPA完成CRUD前两章我们简单讲解了SpringBoot的易用性,SpringBoot框架内部提供了很多我们需要用到的组件,需要什么你就可以拿到项目里。在我们平时的项目中,数据的存储以及访问...