【SpringBoot】
青山师
编码、架构、程序人生;此博客输出内容永久免费,长期分享JAVA开发技术
展开
-
阿里云快速初始化SpringBoot、SpringCloud项目
最近阿里云提供了快速初始化SpringBoot、SpringCloud项目的构建方式,和spring-initializr 如出一辙,当然访问速度肯定更快一些,所以不妨尝试一下。访问地址:https://start.aliyun.com/打开后可以看到熟悉的界面,好了,试试吧:...原创 2020-04-15 10:04:49 · 6758 阅读 · 1 评论 -
SpringBoot 入门教程实例详解(一) 开发第一个SpringBoot应用程序实例
构建你的第一个Spring Boot应用程序更多精彩请阅读 东陆之滇的csdn博客:http://blog.csdn.net/zixiao217 此教程提供一个入门应用程序例子,来展示Spring Boot是如何帮助快速、敏捷开发新一代应用的。你还可以通过 Spring Initializr快速生成一个基于Spring Boot的Maven工程(zip形式,你可以保存到自己计算机): 第一个目标原创 2016-10-13 00:00:46 · 14832 阅读 · 3 评论 -
SpringBoot的yaml配置文件,提示Do not use @ for indentation
spring boot应用启动时,报不要使用@符号的错误:… Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token found character ‘@’ that cannot start any token. (Do not use @ for indentat...原创 2018-07-10 14:08:49 · 23019 阅读 · 16 评论 -
SpringBoot项目使用了@EnableAutoConfiguration 注解报错:The Bean Validation API is on the classpath but no impl
构建简单的SpringBoot项目时,在启动项目的时候发现如下错误: Description: The Bean Validation API is on the classpath but no implementation could be found Action: Add an implementation, such as Hibernate Validator, to the ...原创 2018-07-12 10:08:21 · 16989 阅读 · 1 评论 -
SpringBoot JPA错误:Caused by: org.hibernate.AnnotationException: No identifier specified for entity
使用Spring JPA整合项目时,使用了注解 @Entity,项目启动时会提示以下错误:Caused by: org.hibernate.AnnotationException: No identifier specified for entity意思是,使用 @Entity 注解的类,需要指定唯一主键标识符字段。以下是示例:错误的示例:@Entity // 需要存在person...原创 2018-10-02 11:32:22 · 874 阅读 · 0 评论 -
Java 堆栈信息对象 StackTraceElement,获取当前线程的执行方法
java.langStackTraceElement类保存了Java中线程中的方法栈信息:4个属性: /** * 声明的类,是类的全限定名 */ private String declaringClass; /** * 方法名 */ private String methodName; /** * 文件名一般指:XXX.java */ private S...原创 2018-10-12 19:15:23 · 4409 阅读 · 0 评论 -
SpringBoot多数据源unsatisfied dependency expressed through method 'entityManagerFactoryBuilder...
本来的项目(基于SpringBoot 2.0.5-RELEASE)集成了JPA、mybatis的注解、XML方式访问DB。后面集成多数据源的时候启动SpringBoot时出现了如下错误:Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with nam...原创 2018-10-09 14:21:52 · 14060 阅读 · 0 评论 -
java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ 解决方案
用IDEA 使用最新的springboot版本搭建应用时,pom.xml部分依赖如下: <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.2.RELEASE&l...原创 2019-02-15 14:37:20 · 1320 阅读 · 1 评论 -
Spring声明式事务、编程式事务一文打尽
Spring事务关于数据库事务、锁可以先行查看此文:MySQL数据库读写锁示例详解、事务隔离级别示例详解。Spring事务属于Data Access模块中的内容,该模块包含事务管理支持以及其它数据访问的集成。事务管理全面的事务支持是使用Spring框架的最重要原因之一。Spring为事务管理提供了一个始终如一的抽象,优点如下:提供不同事务的API但是一致的编程模型,如Java事务API...翻译 2019-04-22 17:53:30 · 1226 阅读 · 0 评论