1.错误创建xxxcontroller、xxxservice、xxxserviceImpl ...
2.com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Error: Global ...
上面两种错误挺常见,这两种错误有可能是因为配置文件中的url不合适引起,只需要更改一下resources下的配置文件application.properties中的 spring.datasource.url 就行了:
这里有几种,试着来:
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?serverTimezone=GMT%2B8
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?useUnicode=true&characterEncoding=utf8&useSSL=false
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?autoReconnect=true&useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8