Flask接口签名sign原理与实例代码浅析
363
2023-01-21
详解mybatis.generator配上最新的mysql 8.0.11的一些坑
一、简介
二、配置(配置的话 按着我这个来配置吧 ! )
在pom文件的
再在resources下创建generatorConfig.xml
配置的信息如下
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
connectionURL="jdbc:mysql://localhost:3306/ajyl_medical_model?serverTimezone=UTC" userId="root" password="123456">
connectionURL="jdbc:mysql://localhost:3306/ajyl_medical_model?serverTimezone=UTC" userId="root" password="123456">
targetProject="src/main/java">
targetProject="src/main/java">
targetProject="src/main/resource">
targetProject="src/main/resource">
targetPackage="com.ajyl.modules.asset.dao" targetProject="src/main/java">
targetPackage="com.ajyl.modules.asset.dao" targetProject="src/main/java">
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
(复制走改改就好! )
这里提一下要注意的地方啊!
因为用的是mysql-8.0.11
所以配置有所不同
相信你们用8.0.11启动项目连接数据库的时候就遇到过了
主要就是新版本有新特性,首先,最新官方支持将com.mysql.jdbc.Driver改为com.mysql.cj.jdbc.Driver,此外mysql8.0是不需要建立ssl连接的,你需要显示关闭,即url中的useSSL=false;最后你需要设置CST,CST可视为美国、澳大利亚、古巴或中国的标准时间。serverTimezone是设置时区的,大家可以查一下相关资料了解一下哦!。
这样一配置 就成功了 现在我们来测试一下 吧!
在右侧打开maven面板在Plugin下打开Mybatis-generator下的mybatis-generator:fenerate
右键Run它!
配置没错就会一路启动成功 entity mapper xml都已经生成好了
看看生成的文件
已经成功了 !!!(点个赞吧!)
再来说说 遇到的一些问题吧!
报错的代码
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.581 s
[INFO] Finished at: 2018-08-05T11:51:49+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.5:generate (default-cli) on project smart-campus: The server time zone value 'Öй¼Ê¼ä' is unrecognized or represents more than one time zone. You must configure either the server ornNZHtzdguv JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support. -> [Help 1]
[ERROR] [
ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Process finished with exit code 1
拉到后面看报 to use a more specifc time zone value if you want to utilize time zone support. ->
说没有给他使用时区 请给他设置一个具体的时区值
我们就得在connectionURL的配置上加 ?serverTimezone=UTC
加上就可以解决了
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~