SpringBoot
Gr_lbxx
这个作者很懒,什么都没留下…
展开
-
使用eclipse使用mvn install打包springboot项目时报错
报错:java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test在pom.xml文件中添加<build> ...原创 2020-05-07 15:38:35 · 336 阅读 · 0 评论 -
springboot动态调用实现类
//定义规则的多种类型/** * 数据规则处理类型枚举 */public enum RuleType { MYRULEBYID1, MYRULEBYID2}//接口import java.util.List;import java.util.Map;public interface DataRuleParse { /** * 获取...原创 2019-05-23 19:55:15 · 4473 阅读 · 0 评论 -
sptingboot---项目启动时自动执行方法
在SpringBoot中,有两种接口方式实现启动执行,分别是ApplicationRunner和CommandLineRunner,除了可接受参数不同,其他的大同小异CommandLineRunner :import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boo...原创 2019-05-17 14:02:06 · 510 阅读 · 0 评论 -
新建maven module报错: The parent project must have a packaging type of POM
将父项目的pom.xml文件中把<packaging></packaging>里的jar改成pom原创 2018-11-27 17:07:55 · 414 阅读 · 0 评论 -
报错: org.springframework.boot.builder.SpringApplicationBuilder.<init>([Ljava/lang/Object;)V
springboot中引入eureka报错: java.lang.NoSuchMethodError: org.springframework.boot.builder.SpringApplicationBuilder.<init>([Ljava/lang/Object;)V这是由于springboot版本与eureka版本兼容的问题;Spring Cloud版本:...原创 2018-11-27 16:42:29 · 10982 阅读 · 0 评论 -
eclipse中打包Springboot项目
进入到项目路径下,执行mvn package,就会将springboot项目打成jar包打包好的jar会生成到项目的target目录下 运行 java -jar jar包名称即可原创 2018-11-16 09:29:19 · 3306 阅读 · 0 评论 -
springboot报错:Use of @OneToMany or @ManyToMany targeting an unmapped class:
Caused by: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: com.example.demo1105.dto.RoleDTO.userList[com.example.demo1105.dto.UserDTO] at org.hibe...原创 2018-11-07 13:31:19 · 2422 阅读 · 1 评论 -
@JoinTable注解
属性 是否必须 说明 name 否 指定该连接表的表名 JoinColumns 否 该属性值可接受多个@JoinColumn,用于配置连接表中外键列的信息,这些外键列参照当前实体对应表的主键列 inverseJoinColumns 否 该属性值可接受多个@JoinColumn,用于配置连接表中外键列的信息,这些外键列参照当前实体的...转载 2018-11-07 09:18:42 · 11175 阅读 · 2 评论 -
springboot 多数据源报错jdbcUrl is required with driverClassName
将spring.datasource.primary.url改成spring.datasource.primary.jdbc-url原创 2018-10-30 09:33:42 · 217 阅读 · 0 评论 -
springboot报错 Failed to configure a DataSource: 'url' attribute is not specified and no embedded data
报错 Description:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.Reason: Failed to determine a suitable driver classAction:C...原创 2018-10-30 09:06:02 · 288 阅读 · 0 评论 -
springboot JPA报错 object references an unsaved transient instance - transient instance before ...
org.hibernate.TransientPropertyValueException: object references an unsaved transient instance - save the transient instance before flushing : com.example.demo1025.dto.StudentDTO.score -> com.exam...原创 2018-10-25 10:39:34 · 1102 阅读 · 0 评论 -
springboot JPA报错 person is not mapped [delete from person where age= ?1]
注意的是这时候person是数据库中的表名称,而这里需要写DTO对应的名称错误写法 delete from person where age= ?1正确写法 delete from PersonDTO where age= ?1 ...原创 2018-10-19 15:28:19 · 1806 阅读 · 0 评论 -
springboot JPA报错No identifier specified for entity: XXXX 错误
是因为id注解引错的包错误的包路径:import org.springframework.data.annotation.Id; 正确的包路径:import javax.persistence.Id;原创 2018-10-19 13:27:21 · 462 阅读 · 0 评论 -
maven中报错Missing artifact com.oracle:ojdbc:jar
原博客地址:http://www.cnblogs.com/pangkang/p/8250014.html pom文件中的oracle依赖提示Missing artifact,需要手动下载并导入maven参考oracle依赖下载地址 (ojdbc6.jar)cd到下载的ojdbc6.jar所在路径,执行命令mvn install:install-file -DgroupId=com....转载 2018-10-18 14:51:11 · 566 阅读 · 0 评论 -
springboot 页面使用thymeleaf语法
<!DOCTYPE html>引入这个就可以使用thymeleaf语法<html xmlns:th="http://www.thymeleaf.org"><head> <meta charset="UTF-8"> <title>Title</title></head原创 2018-08-28 20:52:20 · 270 阅读 · 0 评论 -
idea 搭建SpringBoot项目
打开File->project点击Next点击Next配置自己下载的maven,idea本身有自带的maven,但是用自带的maven有些jar无法下载 ,会出现下图显示的情况,所以引用了自己下载的maven 点击File->Settings设置完成后,点击Apply,点击OK右下角出现一个提示框,选择Enable Auto-Im...原创 2018-07-23 20:48:05 · 193 阅读 · 0 评论