idea2020.1之后的版本去掉了自动导包的功能,主要是为了防止idea里面编写pom.xml的时候,还没编写完,然后触发自动导包的功能,导入了错误的包 视频解释参考 https://www.bilibili.com/video/BV1bp4y197eS 官方介绍:https://blog.jet ...
分类:
其他好文 时间:
2021-04-15 12:05:27
阅读次数:
0
在 XML 中,一些字符拥有特殊的意义。 如果您把字符 "<" 放在 XML 元素中,会发生错误,这是因为解析器会把它当作新元素的开始。 这样会产生 XML 错误: <message>if salary < 1000 then</message> 为了避免这个错误,请用实体引用来代替 "<" 字符: ...
分类:
其他好文 时间:
2021-04-15 11:58:55
阅读次数:
0
项目 新建 Spring Starter Project,编辑 pom.xml 文件,引入依赖: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=" ...
分类:
编程语言 时间:
2021-04-14 12:33:52
阅读次数:
0
当tomcat服务器出现404、500错误时候希望能够给用户友好的现实界面;只需要在项目的web.xml中添加一些配置,显示我们自定义的404/500错误网页即可 打开%CATALINA_HOME%/conf/web.xml文件,在<web-app>标签中添加如下内容: 简单写一下404/500自定 ...
分类:
其他好文 时间:
2021-04-13 12:12:39
阅读次数:
0
第一种方法:在pom.xml文件中增加如下标签 1 <build> 2 <resources> 3 <resource> 4 <directory>src/main/resource</directory> 5 <includes> 6 <include>**/*.xml</include> 7 < ...
分类:
其他好文 时间:
2021-04-13 11:47:23
阅读次数:
0
Mybatis的CRUD操作 我们在创建第一个项目自后,来进行数据库的操作; Mybatis在JDBC的基础上,对sql语句的执行进行了简化。 1.准备工作 1.1.创建我们的第二个项目,项目结构如下: 1.2.在pom.xml文件中引入资源文件导出的配置文件 <build> <resources> ...
分类:
其他好文 时间:
2021-04-13 11:46:49
阅读次数:
0
手动导入jar包需要有pom.xml文件。 mvn install:install-file -Dfile=G:\PXY\JFAPP\project28\ris-api-2.1.3\dcm4che\dcm4che-core\5.18.0\dcm4che-core-5.18.0.jar -Dgroup ...
分类:
编程语言 时间:
2021-04-12 12:48:47
阅读次数:
0
XML文件操作 实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XMLDemo { class Student { public string St ...
分类:
其他好文 时间:
2021-04-12 12:30:15
阅读次数:
0
HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" conten ...
分类:
Web程序 时间:
2021-04-10 13:41:40
阅读次数:
0
1. pom.xml Maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> 2. ...
分类:
数据库 时间:
2021-04-10 13:33:58
阅读次数:
0