springboot整合mybatis太复杂了吧,明明几个配置写在application.properties里面就可以完成的了,你这样搞的我一脸懵逼
2019-08-23
org.springframework.jdbc.BadSqlGrammarException:
### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '}' at line 5
不知道哪里错了
### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '}' at line 5
不知道哪里错了
2019-07-24
微信小程序后台: https://gitee.com/xiangze/demo 微信小程序前端:https://gitee.com/xiangze/areadisplay
2019-07-23
微信小程序本地开发完成后发布到线上的时候,后端服务器支持IP+port访问吗,我有一个云服务器,但是没有申请域名,我把后端服务部署到云服务器上,但是线上的小程序能以IP+port的形式去访问云服务器上的后端服务吗?
2019-07-23
后台数据无法显示两大注意点:
url: "http://127.0.0.1:8082/demo/superadmin/listarea",
第二处 } else {
that.setData({
list: list
});这是that,而不是this。
抄都抄不会 哎 感谢同学
url: "http://127.0.0.1:8082/demo/superadmin/listarea",
第二处 } else {
that.setData({
list: list
});这是that,而不是this。
抄都抄不会 哎 感谢同学
2019-07-09
CREATE TABLE tb_area (
area_id int(2) NOT NULL AUTO_INCREMENT,
area_name varchar(200) NOT NULL,
priority int(2) NOT NULL DEFAULT'0',
create_time datetime DEFAULT NULL,
last_edit_time datetime DEFAULT NULL,
PRIMARY KEY(area_id),
UNIQUE KEY UK_AR
area_id int(2) NOT NULL AUTO_INCREMENT,
area_name varchar(200) NOT NULL,
priority int(2) NOT NULL DEFAULT'0',
create_time datetime DEFAULT NULL,
last_edit_time datetime DEFAULT NULL,
PRIMARY KEY(area_id),
UNIQUE KEY UK_AR
2019-07-09
不知道是不是我用的版本太高或者太低的原因,之前链接数据库一直报错no suitable driver。 去掉application.property里面url后面的参数useSSL=false之后就没问题了
2019-06-24