community icon indicating copy to clipboard operation
community copied to clipboard

开源论坛、问答系统,现有功能提问、回复、通知、最新、最热、消除零回复功能。功能持续更新中…… 技术栈 Spring、Spring Boot、MyBatis、MySQL/H2、Bootstrap

Results 22 community issues
Sort by recently updated
recently updated
newest added

Bumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 5.1.45 to 8.0.28. Changelog Sourced from mysql-connector-java's changelog. Changelog https://dev.mysql.com/doc/relnotes/connector-j/8.0/en/ Version 8.0.29 Fix for Bug#21978230, COMMENT PARSING NOT PROPER IN PREPSTMT.EXECUTEBATCH(). Fix for Bug#81468 (23312764), MySQL server...

dependencies
java

Bumps [fastjson](https://github.com/alibaba/fastjson) from 1.2.57 to 1.2.83. Release notes Sourced from fastjson's releases. FASTJSON 1.2.83版本发布(安全修复) 这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。 安全修复方案 :https://github.com/alibaba/fastjson/wiki/security_update_20220523 Issues 安全加固 修复JDK17下setAccessible报错的问题 #4077 下载 https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.83/ 文档 https://github.com/alibaba/fastjson/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98 源码 https://github.com/alibaba/fastjson/tree/1.2.83 fastjson 1.2.79版本发布,BUG修复 这又是一个bug...

dependencies
java

不一定使用github登录功能,建议添加用户自注册功能

![image](https://user-images.githubusercontent.com/22910338/163941825-0479eacc-709e-485b-8377-073e747b314a.png)

经过调试发现在 src/main/java/life/majiang/community/controller/PublishController.java 的 user.getDisable() 中没有判断为 null 。

[WARNING] Table configuration with catalog null, schema null, and table comment did not resolve to any tables

搜索的内容有空格的时候,如何处理URL中的"+"

Bumps [h2](https://github.com/h2database/h2database) from 1.4.199 to 2.1.210. Release notes Sourced from h2's releases. Version 2.1.210 Two security vulnerabilities in H2 Console (CVE-2022-23221 and possible DNS rebinding attack) are fixed. Persistent databases...

dependencies
java

看readme文档 3. 运行数据库脚本,创建本地数据库 ```sh mvn flyway:migrate ``` 如果需要使用 MySQL 数据库,运行脚本前修改两处配置 ``` # src/main/resources/application.properties spring.datasource.url=jdbc:h2:~/community spring.datasource.username=sa spring.datasource.password=123 ``` ``` # pom.xml jdbc:h2:~/community sa 123 ``` 然后我改成了, # src/main/resources/application.properties spring.datasource.url=jdbc:mysql://localhost:3306/community?useUnicode=true&characterEncoding=utf8 spring.datasource.username=root spring.datasource.password=123456...