spring boot
尘埃338
开发路,任重而道远
展开
-
SpringMVC 学习笔记(二) @RequestMapping、@PathVariable等注解
自己的: public ImoocJsonResult registorLogin( @RequestBody Users user ) { //判断用户名跟密码不能为空: if(StringUtils.isBlank(user.getUsername) || StringUtils.isBlank(user.getPassword)) { retur...转载 2019-05-07 23:09:30 · 208 阅读 · 0 评论 -
JAVA中获取当前系统时间 获取当前系统时间和日期并格式化输出:
转自:http://www.cnblogs.com/Matrix54/archive/2012/05/01/2478158.html https://www.cnblogs.com/feiquan/p/9132483.html 一. 获取当前系统时间和日期并格式化输出: import java.util.Date; import java.text.SimpleDateFormat; pu...转载 2019-07-01 22:50:29 · 7998 阅读 · 0 评论 -
Spring Boot + 微信公众号授权登录获取用户信息
转大佬的:https://blog.csdn.net/llmsober/article/details/88765049 通过微信公众平台的官方文档,总结出网页授权流程分为: 1、引导用户进入授权页面同意授权,获取code 2、通过code换取网页授权access_token(与基础支持中的access_token不同) 3、通过网页授权access_token和openid获取用户基本信...转载 2019-07-09 17:31:48 · 6009 阅读 · 1 评论 -
tk.mybatis.mapper.MapperException: tk.mybatis.mapper.provider.EmptyProvider中缺少selectOne方法!
springboot集成devtools热部署与通用mapper出现此错误,估计是两者存在冲突,具体原因不详。 在GitHub上找到解决方案: https://github.com/abel533/MyBatis-Spring-Boot/issues/53 在src/main/resources目录下新建META-INF目录,再次目录下新建一个spring-devtools.properti...转载 2019-06-30 21:55:35 · 1482 阅读 · 0 评论 -
Springboot接收前台参数几种形式总计
https://blog.csdn.net/weixin_40315550/article/details/79138586 接收前台参数 jsp中,传递的参数为: username=Armo. age=18. 姓名:<input type="text" name="username" value="Armo"> 年龄:<input type="text"...转载 2019-07-01 00:26:28 · 2051 阅读 · 0 评论 -
springboot接传参
转载:https://blog.csdn.net/suki_rong/article/details/80445880 第一类:请求路径参数 1、@PathVariable 获取路径参数。即url/{id}这种形式。 2、@RequestParam 获取查询参数。即url?name=这种形式 例子 GEThttp://localhost:8080/demo/123?name=suki...转载 2019-07-01 00:32:02 · 615 阅读 · 0 评论 -
@RequestBody使用
https://www.cnblogs.com/zly123/p/10853049.html @RequestBody: 作用: 主要用来接收前端传递给后端的json字符串中的数据的(请求体中的数据的); 要求: GET方式无请求体,所以使用@RequestBody接收数据时,前端不能使用GET方式提交数据,而是用POST方式进行提交。 在后端的同一个接收方法里,@Requ...转载 2019-07-01 01:03:10 · 616 阅读 · 0 评论