自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 idea中创建swagger文档

一、导入相关依赖<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version></dependency>...

2020-01-13 17:46:22 508

原创 spring中的跨域支持

/** * 跨域配置<br> * 页面访问域名和后端接口地址的域名不一致时,会先发起一个OPTIONS的试探请求<br> * 如果不设置跨域的话,js将无法正确访问接口,域名一致的话,不存在这个问题 * * @author */@Configurationpublic class CrossDomainConfig { /** * 跨域...

2020-01-13 15:19:26 199

原创 mybatis中对时间范围内进行操作,确保一段时间内时间唯一

<where> <if test="startTime != null and startTime!= '' and endTime != null and endTime != '' and meetDate != null and meetDate != '' "> and start_time &lt;#{startTime} ...

2020-01-13 15:04:44 669

原创 mybatis中的批量操作

UPDATEebm_meet_user_relSET mod_time = now(), sign_type = CASE<foreach collection="meetUserRelListBeans" item="item" index="index"> WHEN user_id = #{item.userId} THEN #{item.signType}&lt...

2020-01-13 15:01:43 77

原创 springboot中创建定时任务

springboot中创建定时任务<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.1.RE...

2019-12-16 13:22:56 100

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除