一.为什么要使用 Spring Boot ? Spring Boot解决的问题 (1) Spring Boot使编码变简单 (2) Spring Boot使配置变简单 (3) Spring Boot使部署变简单 (4) Spring Boot使监控变简单 (5) Spring的不足 Spring Boot主要特性 (1)使用Spring Boot只需要很少的配置,大部分的时候我们直接使用默认的配置即可: (2)项目快速搭建,可以无需配置的自动整合第三方的框架: (3)可以完全不使用XML配置文件…
写这篇记录的原因是因为我之前在Spring Boot项目中通过MyBatis连接DB2返回的结果中存在一些字段, 这些字段的元素中缺少了一些符号,所以我现在通过在自己的电脑上通过MyBatis连接DB2和MySQL, 来重现之前碰到的情况. 为了方便分析起见,我这里新建一个test表,并插入一些数据.以下是相关的SQL语句: drop table test; create table test ( id int, name varchar(20), memo character(50) ); i…
1.Spring boot,Mybatis 启动报错 Failed to auto-configure a DataSource *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datas…