摘要:
右边的数据库都已配置好了,包括时区GMT,connection测试也可以,但是写select语句就是不提示,字是黑。 解决方法:https://www.cnblogs.com/jpfss/p/11051015.html 写完select后,alt+enter,选mysql就可以了,我也把SQL Di 阅读全文
摘要:
他就不变红 在mubatis-config.xml里添加 <typeAliases> <package name="com.itheima.pojo"/></typeAliases>然后就解决了别名问题,默认是实体类的不区分大小写 阅读全文
摘要:
Server returns invalid timezone. Need to set 'serverTimezone' property. 解决方法: https://blog.csdn.net/weixin_47068543/article/details/124142155 阅读全文
摘要:
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project maven-demo: Compilation failure 点这个comp 阅读全文
摘要:
mybatis就是解决原来用jdbc需要写对象里的多个属性的费时操作,导入一堆配置文件让增删改查代码变简单 阅读全文
摘要:
ctrl+r 阅读全文
摘要:
获取数据库连接,传统的浪费时间和资源,使用连接池复用节约时间资源 阅读全文
摘要:
' or '1'='1 相当于比普通stmt多了个预编译,预编译?,然后把值替换?即可,不用每次执行整条sql语句,加快速度 需要在sql后加上&useServerPreStmts=true开启预编译 阅读全文
摘要:
一对双引号/一对加号/一个参数 阅读全文
摘要:
阅读全文