- 博客(8)
- 资源 (1)
- 收藏
- 关注
转载 java操作Clob字段
https://blog.youkuaiyun.com/lishihong108/article/details/52232775
2020-10-13 10:29:54
247
转载 @ControllerAdvice 拦截异常并统一处理
原文链接:https://www.cnblogs.com/magicalSam/p/7198420.html
2020-08-11 09:52:11
291
转载 spring boot 静态资源访问
总结:1、自动配置xxxxAutoConfiguration:帮我们给容器中自动配置组件;xxxxProperties:配置类来封装配置文件的内容;2、WebMvcAutoConfiguration类自动为我们注册了如下目录为静态资源目录,也就是说直接可访问到资源的目录。优先级从上到下。所以,如果static里面有个index.html,public下面也有个index.html,则优先会加载static下面的index.html,因为优先级!classpath:/META-INF/resour
2020-07-26 17:50:08
331
原创 js的function中使用ajax返回值接收不到的问题
问题,比如有如下function a调用ajaxfunction a(){ $.ajax({ type : 'post', url : domainName + assignPath + '/**********', contentType : "application/json; charset=utf-8", data : JSON.stringify(formdata), success : function(result) {
2020-07-15 20:52:03
1457
原创 mybatis xml文件中的大于等于 小于等于
<if test="start_time != null and start_time != ''" > and to_date(substr(t.create_time,0,10),'YYYY-MM-DD') >= to_date(#{start_time,jdbcType=VARCHAR},'YYYY-MM-DD')</if><if test="end_time != null and end_time != ''" > and to_dat
2020-07-03 20:48:37
572
原创 mybatis 插入记录后获取主键
<insert id="saveJudgePersonInfoForManage" parameterType="java.util.HashMap" > <selectKey keyProperty="person_id" resultType="String" order="BEFORE"> select sys_guid() from dual </selectKey>insert into ij_judgement_person (p
2020-07-03 15:45:07
424
原创 mybatis 字段like查询
mybatis 字段like查询<if test="conditionName != null and conditionName != ''"> <bind name="_conditionName" value="'%' + conditionName + '%'"/> and t.condition_name LIKE #{_conditionName}</if>或者<if test="queryConditi
2020-07-03 10:23:54
331
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅