摘要:
windows 新建快捷方式 路径中输入: C:\Users\Administrator\AppData\Local\360Chrome\Chrome\Application\360chrome.exe --kiosk http://www.baidu.com 阅读全文
摘要:
git init //实例化本地仓库 git add . //添加所有文件 git commit -m 'desc' //提交+描述 git remote add origin https:git.... //添加远程仓库 git push -u origin master //push到远程仓库, 阅读全文
摘要:
shift+command+. 进入指定文件夹 shift+command+g 阅读全文
摘要:
可在类文件中,右键->GO TO->Test 自动生成测试文件 1.添加测试注解 简单方法测试 阅读全文
摘要:
1.新建返回结果类 result.java 阅读全文
摘要:
AOP 面向切面编程 1.添加aop依赖 pom.xml中添加 阅读全文
摘要:
Girl.java中 限制年龄小于18岁@Entitypublic class Girl { @Id @GeneratedValue private Integer id; private String cupSize; @Min(value = 18,message = "未成年少女禁止入内") 阅读全文
摘要:
操作数据库时,同时插入或修改两条数据,通过事务可控件同时是否成功,如有一条不成功则都不成功 数据库注意:相关表的引擎应为InnoDB navicate-表-设计表-选项-引擎 或在application.yml配置文件中修改 2.0.0以上版本的spring boot实体的默认引擎为MySAM,其不 阅读全文
摘要:
Spring-Data-JPA 整合的是Hibernate JPA(Java Persistence API)定义了一系列对象持久化的标准,目前实现这一规范的产品有Hibernate TopLink等 mysql启动命令 mysql.server start 1.添加依赖 pom.xml 阅读全文
摘要:
新建HelloController类添加注解@RestController //等同于@Controller+@ResponseBody@RequestMapping(value = "hello") //访问此controller类时, hello为'父'路径 localhost:8080/hel 阅读全文