SSM+微服务
成长源于渐悟与顿悟
希望成为一个技术能手
展开
-
Spring注解
1 @RequestMapping:请求链接 @RequestMapping(''/iou''):请求链接。 1 value:指定请求的实际 2 method:指定请求的method类型,GET、POST、PUT、DELETE等 3 consumes:指定处理请求的提交内容类型(Content-Type) 4 produces:指定返回的内容类型,仅当request请求头中的类型中包含该原创 2017-09-06 09:09:47 · 226 阅读 · 0 评论 -
Spring基础注解
一般网络框架分三层: 1 视图层 View 2 业务逻辑层 Controller 3 数据链接层 Dao @Controller:告诉Spring,这是一个控制器类 处理request body部分的注解:@RequestParam 、 @RequestBody 处理request url部分的注解:@PathVariable 处理request header部原创 2017-09-11 09:06:37 · 296 阅读 · 0 评论 -
Spring基础知识梳理
官方文档地址: https://linesh.gitbooks.io/spring-mvc-documentation-linesh-translation/content/publish/21-1/introduction-to-spring-web-mvc-framework.html1 Spring概要 Spring现在主要是一站式服务,Spring Core Container是 其中原创 2017-09-29 16:13:35 · 365 阅读 · 0 评论