==> Preparing: select * from emp where username = ? and password = ?; ==> Parameters: jinyong(String), 123456(String) 2023/7/13 13:30:50
时间: 2024-04-15 14:25:46 浏览: 164
根据您提供的信息,这看起来像是一个数据库查询操作的准备阶段。查询语句是"select * from emp where username = ? and password = ?",其中有两个参数:username和password。参数值分别是"jinyong"和"123456"。时间戳显示是2023年7月13日下午1点30分50秒。这个时间戳可能是用于记录查询操作的执行时间。如果您有其他问题或需要进一步的帮助,请随时提问。
相关问题
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@8417c2] was not registered for synchronization because synchronization is not active JDBC Connection [HikariProxyConnection@28497209 wrapping com.mysql.cj.jdbc.ConnectionImpl@1cfff46] will not be managed by Spring ==> Preparing: select * from User where email = ? and password = ? ==> Parameters: null, null <== Total: 0 Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@8417c2]
sqlsession [org.apache.ibatis.session.defaults.defaultsqlsession@8417c2]未注册进行同步,因为同步未处于活动状态。JDBC连接[HikariProxyConnection@28497209包装com.mysql.cj.jdbc.ConnectionImpl@1cfff46]将不会由Spring管理。==> 准备中:select * from User where email = ? and password = ?==> 参数:null,null<== 总计:0关闭非事务性SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@8417c2]
Creating a new SqlSession SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6793a49c] was not registered for synchronization because synchronization is not active JDBC Connection [HikariProxyConnection@797637478 wrapping com.mysql.cj.jdbc.ConnectionImpl@6f3d6bb2] will not be managed by Spring ==> Preparing: select * from t_project_bim_components where del_flag='N' ==> Parameters:
这是一个错误信息,看起来是使用MyBatis查询数据库时出现的问题。具体原因可能是因为没有正确配置MyBatis的SqlSession和JDBC连接信息,或者是因为Spring事务管理器没有启用同步机制导致的。建议检查配置文件和代码实现,确保正确配置了MyBatis和Spring事务管理器,并且数据库连接信息正确无误。如果问题仍然存在,可以考虑查看更详细的错误日志以便更好地定位问题。
阅读全文