thymeleaf API 官方文档地址 官方文档地址:https://www.thymeleaf.org/documentation.html在线 和 PDF 形式在线:Tutorial: Using Thymeleaf
springboot+vue+easyExcel 导出excel easyexcel版本<dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.2.10</version> <exclusions> <exclusio
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的用户
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...
association和collection级联查询注意的地方 1)association级联查询association级联查询中,A,B,C三处必须一样2)collection级联查询collection级联查询中,1和2一致,3和4一致
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...
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',...
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...
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...
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...
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.<init>(KafkaPro...
windows kafka安装 1、下载kafkahttp://kafka.apache.org/downloads2、解压,进入config目录找到文件server.properties并打开3、找到并编辑log.dirs,修改为本地目录5、找到并编辑zookeeper.connect=localhost:2181,修改为zookeeper中配置的端口号Kafka会按照默认,在9092端口上运行,并...
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的默认...
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);...