Loading

摘要: ##第一种错误,路径错误 首先右键单击此电脑点击属性,环境变量里面的系统变量path,更改你的git的安装路径 然后修改原来git文件夹中 Git\mingw64\etc\gitconfig文件用记事本打开,将里面的路径改为自己的新路径。 其次,在注册表中修改 第一步:点击运行(或者win+r),输 阅读全文
posted @ 2021-06-08 12:52 Concealer 阅读(558) 评论(0) 推荐(0)
摘要: 1、首先创建一个.html文件 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title第一个程序</title> </head> <body> </body> </html> 2、引入Vue.js <script s 阅读全文
posted @ 2021-06-07 12:35 Concealer 阅读(67) 评论(0) 推荐(0)
摘要: ##Vue使用前须知 Vue.js是轻量级,体积小、移动优先。更适合移动端, 比如移动端的Touch事件、易上手,学习曲线平稳,文档齐全、吸取了Angular(模块化) 和React(虚拟DOM) 的长处, 并拥有自己独特的功能,如:计算属性、开源,社区活跃度高等优势 可以去使用微信小程序开发,或者 阅读全文
posted @ 2021-06-06 16:21 Concealer 阅读(43) 评论(0) 推荐(0)
摘要: ##仓库 # 在当前目录新建一个Git代码库 $ git init # 下载一个项目和它的整个代码历史 $ git clone [url] ##配置 # 显示当前的Git配置 $ git config --list # 编辑Git配置文件 $ git config -e [--global] # 设 阅读全文
posted @ 2021-05-30 18:10 Concealer 阅读(78) 评论(0) 推荐(0)
摘要: ##spring-boot-configuration-processor <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifa 阅读全文
posted @ 2021-05-12 17:59 Concealer 阅读(180) 评论(0) 推荐(0)
摘要: @ComponentScan 这个注解在Spring中很重要 ,它对应XML配置中的元素。 作用:自动扫描并加载符合条件的组件或者bean , 将这个bean定义加载到IOC容器中 @SpringBootConfiguration 作用:SpringBoot的配置类 ,标注在某个类上 , 表示这是一 阅读全文
posted @ 2021-05-11 23:38 Concealer 阅读(46) 评论(0) 推荐(0)
摘要: <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includ 阅读全文
posted @ 2021-04-29 12:13 Concealer 阅读(35) 评论(0) 推荐(0)
摘要: web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc 阅读全文
posted @ 2021-04-28 00:42 Concealer 阅读(39) 评论(0) 推荐(0)
摘要: 常用依赖 <dependencies> <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springframework</groupId> 阅读全文
posted @ 2021-04-16 13:57 Concealer 阅读(64) 评论(0) 推荐(0)