上一页 1 ··· 3 4 5 6 7
摘要: MySQL5.7之后对json数据格式进行了函数支持 Json_contains(字段名, '值') 1、表中json格式的某个字段 2、json里的某个键值 Json_search(字段名, 'one', 'data%') 1、要查找的文档 2、查找的范围,有两个选项,‘one’查找第一个符合条件 阅读全文
posted @ 2018-03-15 10:38 hy_wx 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 实现最简单的springboot应用 pom文件中将springboot提供的工程作为父项目继承 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifact 阅读全文
posted @ 2018-03-15 10:37 hy_wx 阅读(140) 评论(0) 推荐(0) 编辑
摘要: SpringBoot使用了一个全局的配置文件application.properties,放在src/mian/resource目录下或者类路径的/config下。springboot的全局配置文件的作用是对一些默认配置的值进行修改 spring.profiles.active=dev:指定因环境不 阅读全文
posted @ 2018-03-15 10:37 hy_wx 阅读(193) 评论(0) 推荐(0) 编辑
摘要: @SpringBootApplication:申明让spring boot自动给程序进行必要的配置,这个配置等同于:@Configuration,@EnableAutoConfiguration和@ComponentScan三个配置 @ResponseBody:表示该方法的返回结果不解析为跳转路径, 阅读全文
posted @ 2018-03-15 10:36 hy_wx 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7