会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
wanbao
博客园
首页
新随笔
联系
订阅
管理
2019年7月3日
No qualifying bean of type available问题修复
摘要: 主要问题是spring配置中没有扫描到bean所在的目录
阅读全文
posted @ 2019-07-03 09:42 wanbao
阅读(6835)
评论(0)
推荐(0)
编辑
2019年4月19日
springboot 1.5.6 + jdbc使用kerberos认证方式连接hive
摘要: 一、POM文件引入的依赖如下: 1、此处hadoop-common和hive-jdbc都需要排除servlet-api,否则将出现springboot启动报错,例如:'unable to start embedded tomcat' 或者 'A child container failed duri
阅读全文
posted @ 2019-04-19 15:28 wanbao
阅读(3219)
评论(0)
推荐(0)
编辑
2019年3月6日
git clone Filename too long的解决办法
摘要: 使用git clone -b [url] 时,因目录名称太长,出现以下错误信息: fatal: cannot create directory at 'XXXXX': Filename too long 解决方法,在Git bash窗口中执行: git config --global core.lo
阅读全文
posted @ 2019-03-06 09:50 wanbao
阅读(936)
评论(0)
推荐(1)
编辑
2019年3月5日
IDEA热部署java和html文件
摘要: 1、菜单栏选择Run->Edit Configurations 2、选中配置的启动类,在“Spring Boot”项目中,将 On 'Update' action和On frame deactivation都选为‘Update classes and resources’ 注:properties文
阅读全文
posted @ 2019-03-05 16:40 wanbao
阅读(1589)
评论(0)
推荐(0)
编辑
2019年3月4日
IDEA启动Springboot报command line is too long问题解决
摘要: 1、在工作空间下找到 .idea/workspace.xml 2、查找<component name="PropertiesComponent">,并在该元素中添加属性<property name="dynamic.classpath" value="true" />
阅读全文
posted @ 2019-03-04 15:00 wanbao
阅读(1053)
评论(0)
推荐(0)
编辑
2019年2月18日
bootstrap table动态行合并
摘要: 在bootstrap table实现行合并主要使用方法: $('#table_list').bootstrapTable('mergeCells', {index: 0, field: 'col_name', rowspan: 5}); 以下假设已经将需要进行行合并的列名保存在了页面上ID为tabl
阅读全文
posted @ 2019-02-18 11:35 wanbao
阅读(2889)
评论(1)
推荐(0)
编辑
2019年1月18日
g++: Command not found
摘要: yum -y install gcc automake autoconf libtool make; yum install gcc gcc-c++
阅读全文
posted @ 2019-01-18 17:06 wanbao
阅读(124)
评论(0)
推荐(0)
编辑
bootstraptable设置列默认值
摘要: 示例:见代码一,通过formatter可以控制显示字段的值,假设渲染bootstraptable时该值未被渲染,同时页面提交时该值也未被修改,在后台该值为null,而不是formatter中设置的'',要想达到设置默认值效果,需要加上row.name = ''; 见代码二。 代码一: 代码二:
阅读全文
posted @ 2019-01-18 15:20 wanbao
阅读(5713)
评论(0)
推荐(0)
编辑
解决Not supported for DML operations问题
摘要: 在JPA的代码中,如果使用自定义update、delete语句时,例如: @Query("delete from table t where t.id = ?1") 会碰到”Not supported for DML operations [delete “问题,解决方法,加上Modifying注解
阅读全文
posted @ 2019-01-18 15:13 wanbao
阅读(7118)
评论(0)
推荐(0)
编辑
2019年1月15日
解决Sprngboot web前端展示Long数据精度丢失问题
摘要: 问题场景 当数据库中的Long字段值过大,并展示在前端时,有可能会出现精度丢失。 例如某某表的主键是bigint(20),且值为”49572448361881608623“,通过springboot controller返回到前端展示时,值变为”49572448361881609000“。 解决方案
阅读全文
posted @ 2019-01-15 08:30 wanbao
阅读(550)
评论(0)
推荐(0)
编辑
下一页