我这里的报错信息显示: org.apache.ibatis.binding.BindingException: Parameter 'reqUsername' not found. Available parameters are [0, 1, param1, param2] 原因:当只有一个参数时,Mapper中可以不使用@Param,但是当有多个参数的时候,要使用@Param. 原来的代码: @Select("select * from tz_user where " + Glob…
1. sql语句如下: SELECT * FROM tb_crm_user WHERE id = #{userId, jdbcType=INTEGER} AND user_name = #{userName, jdbcType=VARCHAR} 2. 接口如下: TbCrmUser queryTbCrmUser(int userId, String userName); 3. 调用接口方式如下: int userId = 1000059081;String userName = "积极"…
picard对bwa生成的sam文件进行reorder时,报错如下: Getting Help Exception in thread "main" htsjdk.samtools. SAM Format Exception: Error parsing text SAM file. MAPQ should be 0 for unmapped read.; File B2.sam; Line 18676 Line: ST-E00126:284:H37TJALXX:8:1101:4158…
flask+sqlite3+echarts2+ajax数据可视化报错: UnicodeDecodeError: 'utf8' codec can't decode byte 解决方法: 将 py文件和html文件用用记事本打开,然后另存为,将编码ANSI改成:UTF-8…
pycharm上安装tensorflow,报错:AttributeError: module 'pip' has no attribute 'main' 解决方法 解决方法: 在pycharm的安装目录下,找到helpers/packaging_tool.py文件, 找到对应的109行和192行. 也就是找到: def do_install(pkgs): try: import pip except ImportError: error_no_pip() return pip.main(['in…
 使用IDEA操作Hbase API 报错:org.apache.hadoop.hbase.client.RetriesExhaustedException的解决方法: 1.错误详情: Exception in thread “main” org.apache.hadoop.hbase.client.RetriesExhaustedException: Failed after attempts=36, exceptions:Fri Feb 14 18:04:10 CST 2020, null,…
用命令(python setup.py install)安装webpy时候总是报错 在网上搜索到的解决方法如下: 1. 这是Python 2 mimetypes的bug 2. 需要将Python2.7/lib/mimetypes.py文件中如下片段注释或删除: try:    ctype = ctype.encode(default_encoding) # omit in 3.x!except UnicodeEncodeError:    pass 补充其它解决办法 解决办法: 在报错的页面添加…
报错原因:加载持久化session错误,tomcat加载时读取的文件是是*.ser,session序列化文件,文件的位置是tomcat\work\Catalina\localhost,找到sessions.ser文件,将其删除,重新启动tomcat即可恢复正常.…
报错的代码 @Update("update staff_info set ApplyState = #{applyState} where Id = #{userId}") int handleStaff( Integer userId, Integer applyState); 修改后的代码 @Update("update staff_info set ApplyState = #{applyState} where Id = #{userId}") int ha…
从官网上下载5.3.2的源码后,make linux进行编译,提示报错: gcc -std=gnu99 -o lua lua.o liblua.a -lm -Wl,-E -ldl -lreadline /usr/local/lib/libreadline.so:对‘tputs’未定义的引用 /usr/local/lib/libreadline.so:对‘tgoto’未定义的引用 /usr/local/lib/libreadline.so:对‘tgetflag’未定义的引用 /usr/local/…