-
Springboot通过devtools进行热部署
查看全部 -
@RestController= @Controller+ @ResponseBody
查看全部 -
Springboot的使用场景
查看全部 -
Springboot是为了微服务SpringCloud铺路的
查看全部 -
@ResController = @Controller+@ResponseBody
@JsonIgnore 忽略
@JsonFormat(pattern="yyyy-MM-dd hh:mm:ss a", locale="zh",timezone="GMT+8")日期格式化
@JsonInclude(Include.NON_NULL)/为空不显示
查看全部 -
返回json字符串时,类上必须加@RequestMapping注解,否则 报映射不明确
查看全部 -
User实体类,属性
查看全部 -
@JsonIgnore//不显示
@JsonFormat(pattern="yyyy-MM-dd hh:mm:ss a",locale="zh",timezone="GMT+8")//日期格式
@JsonInclude(Include.NON_NULL)/为空不显示
查看全部 -
源码地址:
https://github.com/leechenxiang/imooc-springboot-starter
查看全部 -
访问方式,输入网址
查看全部 -
第一个demo查看全部
-
为了引入@RestController,需要额外下载spring-web插件,引入web依赖
查看全部 -
运行成功标识查看全部
-
主文件:
**/application*.properties 或者 **/application*.yml 属性配置页面,
引入@SpringBootApplication 注解,是为启动类
查看全部 -
ImoocSpringbootStarterApplication作为置顶的类,因为Springboot有个默认的配置,所有的类必须在置顶类的包下或子包下,才会去找它相应的注解
查看全部
举报