# procedure **Repository Path**: kangpanwork/procedure ## Basic Information - **Project Name**: procedure - **Description**: java 调用存储过程(简单版本) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-01-04 - **Last Updated**: 2023-01-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 遇到的问题 > ERROR 1267 (HY000): Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_0900_ai_ci,IMPLICIT) for operation '=' ###### 解决办法 1. 问题说明:这是因为存储过程 into 的字段排序规则不对, mysql8 默认排序规则是 utf8mb4_0900_ai_ci,所以我们在设置变量的时候设置他的排序规则即可。 ### 调用 1. 请求接口:http://localhost:8787/procedure/findList 2. 入参: ```json { "i_id": "0001bcc47b5a49d69a436fd2096838a7" } ``` 3. 返回值 ```json { "resultList": null, "result": { "nickname": "唔?", "mobile": "13250670273" } } ```