摘要:
1. 启动报错,查看debug $ java -jar myproject-0.0.1-SNAPSHOT.jar –debug 2.自定义banner The banner that is printed on start up can be changed by adding a banner.t 阅读全文
摘要:
1.在pom.xml中使用spring-boot-starter-parent的作用: Maven users can inherit from the spring-boot-starter-parent project to obtain sensible defaults. The paren 阅读全文
摘要:
Spring 容器 spring 有两个核心接口:BeanFactory 和 ApplicationContext,其中ApplicationContext 是 BeanFactory的子接口,它们都代表Spring容器, spring 容器是生产Bean实例的工厂,并管理容器中的Bean。 1.B 阅读全文
摘要:
IF(expr,v1,v2) expr表达式为true时返回v1,否则返回v2 IFNULL(v1,v2) 如果v1为NULL,返回v2 ;v1不为NULL 则返回v1 CASE expr WHEN v1 THEN r1 [WHEN v2 THEN r2][......] [ELSE m] END 阅读全文