项目 新建 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
在WDS+MDT部署的时候。 我们有boot.wim,引导用的。 还有install.win,系统的。 还有MDT生成的PE的。 先抛开我使用virtualBox做测试,如果需要添加网卡驱动。 那么加入到哪里? boot.wim,是需要加的,否则引导起系统后,没有网卡驱动,无法加载install.w ...
分类:
其他好文 时间:
2021-04-14 12:19:47
阅读次数:
0
cat /proc/cmdline查看cmdline文件,文件中保存了内核启动参数 包括boot镜像、分区识别号、文件系统类型、rootwait终端. ...
分类:
其他好文 时间:
2021-04-13 12:10:27
阅读次数:
0
springboot常用注解 1. @SpringBootApplication 这个注解是 Spring Boot 项目的基石,创建 SpringBoot 项目之后会默认在主类加上。 @SpringBootApplication看作是 @Configuration、@EnableAutoConfi ...
分类:
编程语言 时间:
2021-04-12 12:19:37
阅读次数:
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
spring boot还支持yaml格式的配置文件。这种格式文件是JSON超集文件格式,其以数据为中心,扩展名可是是yml和yaml。 yaml格式文件以key/value的格式配置属性,使用缩进控制层级关系。 具体使用如下: 1、value为普通数据类型,根目录下建/config/applicat ...
分类:
移动开发 时间:
2021-04-10 13:31:59
阅读次数:
0
添加 Swagger 依赖 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter --> <dependency> <groupId>io.springfox</groupId> <artifactId ...
分类:
编程语言 时间:
2021-04-10 13:06:00
阅读次数:
0
1、什么是Spring Boot? 多年来,随着新功能的增加,spring变得越来越复杂。只需访问https://spring.io/projects页面,我们就会看到可以在我们的应用程序中使用的所有Spring项目的不同功能。 如果必须启动一个新的Spring项目,我们必须添加构建路径或添加Mav ...
分类:
编程语言 时间:
2021-04-10 12:56:17
阅读次数:
0
树莓派WIFI设置 在“开始使用树莓派”中,我们在boot根目录下创wpa_supplicant.conf文件,实现了第一次连接wifi。以后开机后,树莓派会自动连接那个wifi。如果想要连接多个wifi需要修个如下配置。 sudo vim /etc/wpa_supplicant/wap_suppl ...
分类:
其他好文 时间:
2021-04-09 13:40:31
阅读次数:
0
多模块,在使用mybatis-plus时,找不到其他模块的xml 报org.apache.ibatis.binding.BindingException: Invalid bound statement (not found) 错误 发现target下mapper包中的xml文件夹没有被编译,在父工 ...
分类:
编程语言 时间:
2021-04-09 12:59:31
阅读次数:
0