java
文章平均质量分 69
麦穗麦穗
若有恒,何必三更眠五更起,最无益,一日曝十日寒。
展开
-
eclipse中项目代码编译无错但是项目名有红色叉解决办法
好几次遇到了这样的事情,尤其是在eclipse中,虽然不影响正常项目运行,但是看着很不舒服,现将我解决的办法记录如下:报错如图:解决办法:首先eclipse不会无缘无故报错的,首先打开Markers中查看错误原因,打开方式在 Windows --> show views -->Markers 打开。我的打开如下:由此可以看出:我的报错原因是Description Resource Path Location Type Java comp...原创 2021-03-26 20:42:27 · 1344 阅读 · 0 评论 -
解决mybatis逆向工程生成代码报错
在用mybatis逆向工程生成代码时报错:问题描述:出错显示:Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.7:generate (default-cli) on project springboot: Execution default-cli of goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.7:gener原创 2020-11-15 09:48:19 · 1451 阅读 · 0 评论 -
解决使用eclipse创建maven web项目时报Could not resolve archetype的问题
项目场景:在eclipse中创建maven项目webapp项目问题描述:使用eclipse创建maven项目,创建失败,出现如下错误提示:Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:1.0 from any of the configured repositories.原因分析:org.apache.maven.archetypes:maven-archetype-原创 2020-10-29 11:10:43 · 520 阅读 · 0 评论 -
(转)mybatis + mysql date时间前端展示样式问题 2020-11-22T15:14:12.000+0000
问题:使用 mybatis 读取 mysql的date时间类型,查询结果类型为2019-04-17T16:00:00.000+0000解决方法如下:@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") public Date getHuifutime() { return huifutime; }注:在model类中的时间属性的get方法上增加注解,timezone = "GMT+8"结果如下图:原创 2020-11-26 09:21:52 · 326 阅读 · 0 评论 -
关于Java中的Deque
文章目录一、二者的关系二、Quene接口三、Deque接口(双向队列)一、pandas是什么?二、使用步骤1.引入库2.读入数据总结一、二者的关系1、Quene以及Deque都是继承于Collection,Deque是Quene的子接口。public interface Deque<E> extends Queue<E> Quene是先进先出的单向队列,Deque是双向队列。二、Quene接口1、是集合框架Collection的子接口,是一种常见的数据结构,Quen原创 2021-09-11 11:22:07 · 3605 阅读 · 0 评论