logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

IDEA 2020.2中配置maven及创建maven工程、maven web工程

1.安装maven核心程序下载地址:http://maven.apache.org/这里使用:apache-maven-3.6.3版本2.创建本地仓库后面maven自动下载的jar包都会保存在这个文件夹中:D:\Maven\LocalRepository3.配置环境变量在用户变量中配置MAVEN_HOME的地址,映射到安装的maven包的目录:再配置路径Path的值,其地址映射到安装的maven包

#maven#intellij-idea
SpringBoot报错:Failed to read artifact descriptor for org.springframework.boot:spring-boot-starter-xxx

在SpringBoot工程中使用搭建maven工程时,引入依赖时报错:Failed to read artifact descriptor for org.springframework.boot:spring-boot-starter-cache:jar:2.6.3可能的解决方法:1.查看所使用的maven配置是不是自己配置的:这里使用的是IDEA中自带的,要换成自己配置的maven:这样就可以

#spring boot#maven
使用Vue时浏览器后台报错:Failed to load resource: the server responded with a status of 404 (Not Found)

在IDEA中创建maven工程使用vue修改html中的内容时,访问html页面发现并未修改成功,F12打开后台显示错误:Failed to load resource: the server responded with a status of 404 (Not Found) ,浏览器并未找到vue.js文件!原因:(1)maven工程引入vue.js文件后需要对工程进行打包,双击package

#intellij-idea#maven
MyBatisPlus实现自定义分页查询数据结合QueryWrapper实现自定义的多表连接查询

在MyBatisPlus中,虽然框架自带的BaseMapper具有各种CRUD操作,但有时需要进行自定义的查询,如多表的连接查询:首先准备实体类:@Datapublic class Dish implements Serializable {private static final long serialVersionUID = 1L;private Long id;//菜品名称private S

#spring boot
使input文本框中文字居中

通过text-align:center实现:<input style="width: 60px;text-align:center">效果:

#css#html
SpringBoot报错:Failed to read artifact descriptor for org.springframework.boot:spring-boot-starter-xxx

在SpringBoot工程中使用搭建maven工程时,引入依赖时报错:Failed to read artifact descriptor for org.springframework.boot:spring-boot-starter-cache:jar:2.6.3可能的解决方法:1.查看所使用的maven配置是不是自己配置的:这里使用的是IDEA中自带的,要换成自己配置的maven:这样就可以

#spring boot#maven
使用Xftp7连接VMware workstaion搭建的linux虚拟机全过程及出现问题详解

1.首先利用VMware workstaion在本机搭建linux虚拟机,详见此视频:VMware workstaion在本机搭建linux虚拟机所搭建的linux虚拟机为CENTOS7然后安装Xftp7应用程序2.配置好Linux虚拟机的网络连接(1)首先查看linux虚拟机的ip地址:ifconfig其中ens32所对应的inet值即为ip地址;如果想修改ip地址:(2)修改linux虚拟机的

#linux#redis
到底了