自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(31)
  • 资源 (9)
  • 收藏
  • 关注

原创 企业微信机器人配置说明

企业微信机器人配置说明

2023-08-29 14:47:34 3458

原创 企业微信发送监控预警

springboot企业微信发送监控预警

2023-08-24 20:17:02 267

原创 全局异常处理

springboot全局统一异常处理

2023-08-22 20:10:34 117

原创 自定义统一异常处理

springboot自定义异常统一处理

2023-08-22 20:06:22 127

原创 stream.map return

stream.map return warning

2023-08-19 14:36:32 359

原创 thymeleaf API 官方文档地址

官方文档地址:​​​​​​​​​​​​​​https://www.thymeleaf.org/documentation.html在线 和 PDF 形式在线:Tutorial: Using Thymeleaf

2022-06-01 11:12:42 274

原创 springboot+vue+easyExcel 导出excel

easyexcel版本<dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.2.10</version> <exclusions> <exclusio

2021-11-12 21:33:56 988

原创 mysql报错: SELECT command denied to bm_user ‘aaa‘@‘localhost‘ for table ‘bm_user‘

错误信息的字面意思是:表“bm_user”拒绝用户“aaa”@“localhost”的SELECT命令 ,用户没有查看bm_user表的权限,需要root账号授权 用户aaa对表bm_user的select操作权限以下2种原因:1.使用root账号登录数据库,执行授权SQLgrant select on adb.bm_user to 'aaa'@'localhost' IDENTIFIED BY '';授权后需要刷新权限才会生效:flush privileges;2.数据库 adb的用户

2021-10-29 14:55:47 421

原创 Error: Loading PostCSS Plugin failed: Cannot find module ./features/css-text-justify

ERROR Failed to compile with 186 errors下午4:44:06error in ./src/components/main.lessModule build failed (from ./node_modules/postcss-loader/src/index.js):Error: Loading PostCSS Plugin failed: Cannot find module './features/css-text-justify'Require...

2020-06-22 16:52:56 5182

原创 association和collection级联查询注意的地方

1)association级联查询association级联查询中,A,B,C三处必须一样2)collection级联查询collection级联查询中,1和2一致,3和4一致

2020-03-30 18:27:54 230

原创 No SecurityManager accessible to the calling code

org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. This is a...

2019-11-24 14:46:17 3488 2

原创 Thymeleaf #numbers 显示千分位金额,保留小数位

#numbers.formatDecimal(numbwe,整数位,整数位千分位标识符,小数位,小数位表示符)${#numbers.formatDecimal(num,1,'COMMA',2,'POINT')}显示:99,999,999.991:表示整数位至少一位,不足以0补齐,如:num = 0.00,${#numbers.formatDecimal(num,0,'COMMA',...

2019-08-23 15:23:47 14699 6

原创 使用bootstrapValidator表单验证插件jQuery报too much recursion错误的解决办法

在form表单上添加class="form-group"

2019-08-19 11:35:34 267

原创 There is insufficient memory for the Java Runtime Environment to continue

# # There is insufficient memory for the Java Runtime Environment to continue.# Native memory allocation (malloc) failed to allocate 136534 bytes for Chunk::new# An error report file with more inf...

2019-06-05 15:00:40 2325

转载 FATAL: remaining connection slots are reserved for non-replication superuser connections

2019-03-11 15:53:27.249 ERROR 560 --- [pool-1-thread-1] com.alibaba.druid.pool.DruidDataSource : init datasource error, url: jdbc:postgresql:/xxx/xxxorg.postgresql.util.PSQLException: FATAL: remai...

2019-03-11 16:02:22 31396 2

原创 Try setting a different JdbcType for this parameter or a different configuration property. Cause:

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='year', mode=IN, javaType=class jav...

2019-03-08 14:53:38 5142

原创 org.apache.kafka.common.KafkaException: Failed to construct kafka producer

java.lang.ExceptionInInitializerErrorCaused by: org.apache.kafka.common.KafkaException: Failed to construct kafka producer    at org.apache.kafka.clients.producer.KafkaProducer.&lt;init&gt;(KafkaPro...

2019-02-02 17:07:56 39586 2

原创 windows kafka安装

1、下载kafkahttp://kafka.apache.org/downloads2、解压,进入config目录找到文件server.properties并打开3、找到并编辑log.dirs,修改为本地目录5、找到并编辑zookeeper.connect=localhost:2181,修改为zookeeper中配置的端口号Kafka会按照默认,在9092端口上运行,并...

2019-02-02 14:02:14 2535

原创 windows zookeeper安装

1、下载zookeeperhttp://zookeeper.apache.org/releases.html#download2、解压后,进入conf目录,复制zoo_sample.cfg,并重命名为zoo.cfg3、打开zoo.cfg,修改dataDir为本地目录4、添加环境变量,path 添加:%ZOOKEEPER_HOME%\bin5、zookeeper的默认...

2019-02-02 11:10:08 166

原创 java.util.Date转换LocalDateTime

Date date = new Date();ZoneId zoneId = ZoneId.of(ZoneId.SHORT_IDS.get("PST"));LocalDateTime localDateTime1 = LocalDateTime.ofInstant(date.toInstant(), zoneId);System.out.println(localDateTime1);...

2019-01-21 16:01:53 3528

原创 charts Y轴和X 轴的Label样式

options: { responsive: true, tooltips: { callbacks: { label: function(tooltipItem, data) { var label = data.labels[tooltipItem.index]; var ...

2019-01-09 18:52:37 724

原创 Mongodb org.springframework.core.convert.ConverterNotFoundException: No converter found capable

org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type [org.bson.Document] to type [java.lang.String]    at org.springframework.core.convert.s...

2018-11-19 15:14:31 11876

原创 Mac 设置root密码

操作步骤:1. command键 + 空格键,输入终端,如下图,点击后打开终端2.键入sudo passwd root 然后提示输入当前登录用户密码,通过以后,提示输入两遍root的密码。这样就设置好root帐号密码了,可以用root来登录MacOS了。 3、用root登陆,修改文件权限...

2018-08-29 22:05:07 2798

转载 java编译时error: illegal character '\ufeff' 的解决办法

原文链接:https://blog.csdn.net/shixing_11/article/details/6976900最近开发人员通过SVN提交了xxx.java文件,因发布时该包有问题需要回退,故SCM将该xxx.java文件用editplus打开删除了新添的一行,删除后重新编译打包,却报了如下异常:java:[1,0] illegal character: \65279表面看着该文件确实没...

2018-06-27 18:01:58 32322 2

原创 idea创建springboot项目

1、打开IDEA,创建新项目File--&gt;New--&gt;Project 2、选择Spring Initializr,其他默认,点击next继续 3、填写group以及artifact,点击next继续 4、选择jar包,勾选web,mysql,mybatis,然后点击next继续 5、填写项目名称和保存路径, 最后点击 FInish 6、application.yml(项目建城时这个ap...

2018-05-08 16:39:02 140

原创 Can't read swagger JSON from http://localhost:8080/v2/api-docs?group=移动端接口文档

出现以上原因是因为groupName设置了中文1、将标红色的值改为英文就好了return new Docket(DocumentationType.SWAGGER_2) .apiInfo(apiInfo)//调用apiInfo方法,创建一个ApiInfo实例,里面是展示在文档页面信息内容 .groupName("移动端接口文档") .select(...

2018-05-08 15:19:08 13089

原创 使用mybatis generator 自动生成代码

1、在配置Maven pom.xml 文件中,增加以下插件 &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-maven-plugin...

2018-04-26 15:08:03 211

原创 springboot配置druid数据源

1、在pom.xml中添加如下依赖&lt;!-- Druid 数据连接池依赖 --&gt;&lt;dependency&gt; &lt;groupId&gt;com.alibaba&lt;/groupId&gt; &lt;artifactId&gt;druid&lt;/artifactId&gt; &lt;version&gt;1.0.28&lt;/version&am

2018-04-25 18:03:11 154

转载 mongodb安装

 Mongodb下载地址:https://www.mongodb.com/download-center1、下载msi 2、选择“customer”选项重新指定安装目录,否则默认安装C盘,在D盘根目录下新建mongodb文件夹3、然后一直next就行。4、在mongodb目录下新建数据存储目录data,新建日志存放目录logs 5、在mongodb目录下新建mongo.config文件,并且写入d...

2018-04-25 15:16:54 187

原创 Ueditor整合七牛

非JSP上传,所以将后端语言相关的部分全部删除了,剩下的就是两个java类UeditorController.java和QiniuUtil.java1、下载Ueditor压缩包,解压后,粘贴到项目中 2、修改ueditor1.4.3/ueditor.config.js文件 上图中的action=config返回的数据格式和信息,和ueditor1.4.3/jsp/config.json一样上图中的...

2018-04-25 15:05:26 691

原创 hibernate中pojo映射,死循环

2018-04-24 10:19:17.394 ERROR 20232 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request ...

2018-04-24 11:30:10 331

RxTx源码 RxTx Source

java使用rxtx串口通信,rxtx源码,方便大家查阅,深入对rxtx的学习和了解

2014-07-18

registry-3.1.3jar包下载

解决动态链接库ICE_JNIRegistry.dll位置放置问题,该jar包中已经包含ICE_JNIRegistry.dll。该压缩包中有regist.jar和registry源码,regist.jar是将registry-3.1.3的源码修改后重新编译的,不需要ICE_JNIRegistry.dll,直接调用regist.jar即可

2014-05-09

mysql帮助文档

mysql中文帮助文档,用于对mysql的查询和理解

2013-10-28

java_jdk1.6 API

这个更详细完整,能更好的帮助您,更好的开发

2013-09-18

java中文API

java中文API文档,帮助您更好地学习java,并且利用它快速的开发

2013-09-12

mybatis+springMvc+mysql

mybatis与springMvc的整合,适合初级学习者

2013-08-11

mybatis,mybatis+mysql

适合学习mybatis,从初步到提升,包括增删改查,调用存储过程及分页,使用的是mybatis+mysql

2013-08-11

C#电影登录

综合运用所学知识,使用C#语言,利用VS2010及SQL SERVER2005软件,设计并制作一个电影院电影及票务信息查询系统。2、 程序运行显示现在所有影厅信息。 3、 添加新的影厅放映信息时,在录入数据库前进行必要的合法验证。 4、 删除选中影厅放映信息前给出提示,确认后删除。 5、 放映厅名下拉组合框中的信息要求从数据库相应字段读取并绑定到控件。 6、 代码规范,有必要注释。 7、 提交时提交项目所在原码及数据库脚本文件

2012-03-19

更换VS.NET 2010的皮肤

接下来,我们就一步一步的来使用这个插件: 1.安装插件: 你可以通过扩展管理器(Tools\Extension Manager)搜索关键字 visual studio color theme editor 搜索到这个控件,或者是直接下载, 直接安装即可. 2.安装完成后,你发会现上面多了一个Theme菜单,如果没有,请重新启动,或者是到Tools->Options->Environment->Extension Manager中将Load per user extensions when running as administratortt选中. 3.点击菜单,你会发现已经有了一些皮肤可以选择,而且出来了自定义颜色选项. 选中其中的Emerald皮肤,你会发现整个VS.NET都变了, 4.点击菜单中的Customize Colors,弹出来自定义颜色的管理器,内置的皮肤是不可以编辑的,点击new theme 创建新的皮肤 5.改变颜色,可以通过修改H L S值来控制饱和度,亮度等,有关这方面更多的介绍请见这里.我们把S的值改成-100. 6.应用皮肤:点击上面窗口的Apply,然后关闭 窗口,你会发现新的皮肤已经在Theme菜单中了. 7.另外你也可以点击颜色下拉,在弹出的窗口中利用Color picker改变RGB或者HLS的值,或者是选择系统颜色.

2011-05-06

空空如也

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

TA关注的人

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