随笔 - 30
文章 - 4
评论 - 0
阅读 -
18474
06 2022 档案
jQuery之选择器
摘要:<!DOCTYPE html> <html> <head> <title> jquery</title> <style type="text/css"> body{ padding-bottom: 1000px; } ul{ width: 500px; margin: 0; padding:0; l
阅读全文
fatal: unable to access 'https://github.com/yangHabit/ProjectApplicationManager.git/': OpenSSL SSL_read: Connection was reset, errno 10054
摘要:可能是网络原因 git config --global --unset http.proxy git config --global --unset https.proxy
阅读全文
Try setting a different JdbcType for this parameter or a different configuration property. mybatis查询报参数错误
摘要:Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Co
阅读全文
时间格式化SimpleDateFormat
摘要:SimpleDateFormat ft = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置时间展示格式 ft.format("需要格式化的时间串");
阅读全文
实体类entity的属性值自动赋值给VO
摘要:使用import org.springframework.beans.BeanUtils提供的工具类BeanUtils可以直接将同名属性值赋值 play为源对象,vo为目标对象,就是将play对象同名的属性值赋给vo对象的属性 BeanUtils.copyProperties(play,vo);
阅读全文
IDEA git提交代码 time out 及解决方法
摘要:可能是网络服务代理的问题,可以尝试在命令行输入一下两行代码
阅读全文
mybatis generator代码自动生成器
摘要:import org.mybatis.generator.api.MyBatisGenerator; import org.mybatis.generator.config.Configuration; import org.mybatis.generator.config.xml.Configur
阅读全文