- 博客(7)
- 收藏
- 关注
转载 sql-velocity 条件判断
(1)判断null #if( $name == null) something code #end (2)判断null或者false #if( !$name) something code #end (3)判断null或者空字符串 #if( "$!name" == "") something code #end 转载:https://blog.csdn.net/coslay/arti...
2018-08-29 17:59:53
1305
原创 oracle 分页
select * from (select tmp_tb.*, ROWNUM row_id from (select t1.*, from table1 t1 ) tmp_tb where ROWNUM <= 10) where row_id > 0 这里共有三层查询,...
2018-08-24 11:36:22
235
原创 关于h5-video标签 iso不能播放问题及解决
video标签简单代码 <video autoplay loop> <source src="video/xxx.mp4" type="video/mp4"> <source src="video/xxx.webm" type="video/webm"> </video> 网上说safari会首先
2018-08-24 09:50:28
9975
1
转载 关于SVN上检出的项目报错问题
从SVN上检出的项目会报错,可能是项目所需的jar包没有全部导入的原因,也可能是编码的问题 编码问题解决:右击项目,点击进入Properties>Resource>Other>将编码格式改为UTF-8即可。 jar包问题解决方案(如何查看项目中哪些jar包没有导入): 1.右击项目build path > Libraries > Add JARs 2.Add JARs...
2018-08-20 16:04:06
3509
转载 EasyUI datagrid属性和方法《转载》
使用方法: 1、从现有的表单元素创建数据表格,定义在html中的行,列和数据。 <table class="easyui-datagrid"> <thead> <tr> <th data-options="field:'code'">Code</th>
2018-08-17 17:20:53
352
原创 JDBC requires that the JdbcType must be specified for all nullable parameters
今天,遇到了这个问题,百度了半天,说参数名写错了,或者参数为null,但参数名正确也不为null,后面才发现是写参数的时候多了个空格。如#{pd.STATE },去掉空格就好了#{pd.STATE}...
2018-08-16 17:33:32
2840
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅