-
Redis 安装包:https://github.com/MicrosoftArchive/redis/releases Redis 可视化管理工具: https://redisdesktop.com/download
查看全部 -
redis存取值案例
查看全部 -
redis配置
查看全部 -
SpringMvc使用的事务配置
查看全部 -
增加删除,修改,使用REQUIRED
查询使用SUPPORTS
查看全部 -
springboot整合事务
查看全部 -
updata...selective: 字段有值的情况下才会更新
查看全部 -
(sid)id生成器
查看全部 -
捕获异常助手类
查看全部 -
适合动静分离
查看全部 -
BeanUtils.copyProperties
如果两个类字段相同,可以用这一条语句拷贝,不用逐个属性赋值
查看全部 -
<!-- 热部署 --> <!-- devtools可以实现页面热部署(即页面修改后会立即生效, 这个可以直接在application.properties文件中配置spring.thymeleaf.cache=false来实现) --> <!-- 实现类文件热部署(类文件修改后不会立即生效),实现对属性文件的热部署。 --> <!-- 即devtools会监听classpath下的文件变动,并且会立即重启应用(发生在保存时机), 注意:因为其采用的虚拟机机制,该项重启是很快的 --> <!-- (1)base classloader (Base类加载器):加载不改变的Class,例如:第三方提供的jar包。 --> <!-- (2)restart classloader(Restart类加载器):加载正在开发的Class。 --> <!-- 为什么重启很快,因为重启的时候只是加载了在开发的Class,没有重新加载第三方的jar包。 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <!-- optional=true, 依赖不会传递, 该项目依赖devtools; 之后依赖boot项目的项目如果想要使用devtools, 需要重新引入 --> <optional>true</optional> </dependency>
查看全部 -
https://github.com/leechenxiang/imooc-springboot-starter @Controller//这里用回了spring的注解 @RequestMapping("/User") public class UserController { @RequestMapping("/getuser") @ResponseBody//需要加入返回体 public User hello() { User u = new User(); u.setBirthday(new Date()); u.setName("cheling"); u.setPassword("123"); return u; } }
@RestController = @Controller + @ResponseBody
查看全部 -
pom加
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>1.5.10.RELEASE</version> </dependency>
在根目录下建立controller
package com.example.demo.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping("/hello") public Object hello() { return "hello spring cheling "; } }
一定要在根目录下建controller目录再建java文件,否则会访问不到
查看全部 -
https://github.com/leechenxiang/imooc-springboot-starter
查看全部
举报
0/150
提交
取消