Spring Boot 学习
文章平均质量分 50
天空中的小虾米
自己选择的路,跪着也要走完
展开
-
Spring Boot 学习之路 微信点餐 类目表创建
1.配置pom.xml文件 <!--配置Mysql 属性 --><dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope&原创 2018-07-13 00:47:44 · 607 阅读 · 0 评论 -
Spring Boot 学习之路 微信点餐 商品表创建
1.生成ProductInfo.java文件 package com.imooc.sell.dataobject;import lombok.Data;import javax.persistence.Entity;import javax.persistence.Id;import java.math.BigDecimal;/** * 商品信息 * @author GX...原创 2018-07-13 00:59:41 · 377 阅读 · 0 评论 -
Spring Boot 学习之路 单元测试 设置断言
核心——断言断言是编写测试用例的核心实现方式,即期望值是多少,测试的结果是多少,以此来判断测试是否通过。1. 断言核心方法assertArrayEquals(expecteds, actuals)查看两个数组是否相等。assertEquals(expected, actual)查看两个对象是否相等。类似于字符串比较使用的equals()方法assertNotEquals(first, second...原创 2018-07-06 21:40:18 · 4028 阅读 · 0 评论 -
Spring boot 传递JSON 数据格式 为NULL 格式化。数据库配置
spring: datasource: driver-class-name: com.mysql.jdbc.Driver username: root password: 123456 url: jdbc:mysql://192.168.1.11/sell?characterEncoding=utf-8&useSSL=false jpa: ...原创 2018-10-25 09:38:26 · 873 阅读 · 0 评论 -
Spring Boot 实战基础 AOP
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u010819416/article/details/53395585 </div> <link rel="stylesheet" href="h...转载 2019-04-20 01:34:00 · 128 阅读 · 0 评论 -
Spring Boot 学习之路 使用AOP请求处理对象 打印日志功能
1.配置pom.xml 使用 spring-boot-starter-aop<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId></dependency>2...原创 2018-07-05 20:57:39 · 188 阅读 · 0 评论 -
Spring Boot 学习之路 LomBok配置INFO ERROR日志提醒
1.引入LomBok配置到pom.xml中的中<dependency> <groupId> org.projectlombok </ groupId> <artifactId> lombok </ artifactId> <version> 1.16.18 </ version> &原创 2018-07-09 21:52:42 · 3505 阅读 · 1 评论 -
Spring Boot 学习之路 JPA之@GeneratedValue注解
JPA的@GeneratedValue注解,在JPA中,@GeneratedValue注解存在的意义主要就是为一个实体生成一个唯一标识的主键(JPA要求每一个实体Entity,必须有且只有一个主键),@GeneratedValue提供了主键的生成策略。@GeneratedValue注解有两个属性,分别是strategy和generator,其中generator属性的值是一个字符串,默认为...转载 2018-07-10 09:09:44 · 1304 阅读 · 0 评论 -
Spring Boot 错误 Failed to configure a DataSource: 'url' attribute is not specified and no embedde
***************************APPLICATION FAILED TO START*************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could...转载 2018-07-03 20:46:15 · 2002 阅读 · 0 评论 -
Spring Boot Jpa 无法自动生成表
在@SpringBootApplication标注的类前面再加一个@EnableAutoConfiguration注解。@EnableAutoConfiguration 加上上在的,代码,一般来说数据库会新增到表了 如果还是没有,可以考虑再加下面代码 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;...转载 2018-07-03 21:42:04 · 748 阅读 · 0 评论 -
Spring Boot 学习之路 使用JPA对Girl 操作
package com.imooc.student;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.*;import java.util.List;@RestControllerpublic class GirlC...原创 2018-07-03 23:38:52 · 382 阅读 · 0 评论 -
Spring Boot 学习之路 @Valid注解验证功能使用
@Valid注解用于校验,所属包为:javax.validation.Valid。① 首先需要在实体类的相应字段上添加用于充当校验条件的注解,如:@Min,如下代码(age属于Girl类中的属@Min(value = 18,message = "未成年少女禁止入内")private Integer age;② 其次在controller层的方法的要校验的参数上添加@Valid注解,并且需要传入B...原创 2018-07-05 01:51:02 · 883 阅读 · 0 评论 -
Spring Boot 学习之路 Lombok配置
Lombook注解@Setter@Getter@Data@Log(这是一个泛型注解,具体有很多种形式)@AllArgsConstructor@NoArgsConstructor@EqualsAndHashCode@NonNull@Cleanup@ToString@RequiredArgsConstructor@Value@SneakyThrows@Synchronized注解详情log注解在 类 ...转载 2018-07-08 23:10:20 · 1385 阅读 · 0 评论