一路繁花似锦绣前程
失败的越多,成功才越有价值

导航

 

2020年3月29日

摘要: 一、配置idea a、Ctrl+Alt+S => Compiler => Build project automatically; b、Ctrl+Alt+Shift+/ => Registry... => compiler.automake.allow.when.app.running; 二、配置p 阅读全文
posted @ 2020-03-29 10:14 一路繁花似锦绣前程 阅读(519) 评论(0) 推荐(0) 编辑
 

2020年3月27日

摘要: 一、整合测试 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <d 阅读全文
posted @ 2020-03-27 22:03 一路繁花似锦绣前程 阅读(598) 评论(0) 推荐(0) 编辑
 
摘要: 一、SpringBootApplication注解 //@EnableAutoConfiguration //@ComponentScan("com.wuxi") //********等价******** @SpringBootApplication(scanBasePackages = {"com 阅读全文
posted @ 2020-03-27 21:20 一路繁花似锦绣前程 阅读(382) 评论(0) 推荐(0) 编辑
 

2020年3月20日

摘要: 目录一、继承二、原型三、原型三角图四、设置原型对象 一、继承 function Person(name) { // 成员变量 this.name = name; } // 成员方法 Person.prototype.eat = function () { console.log("吃饭") }; / 阅读全文
posted @ 2020-03-20 11:02 一路繁花似锦绣前程 阅读(143) 评论(0) 推荐(0) 编辑
 

2020年3月15日

摘要: 一、获取自定义配置的值 application.properties配置 book.name=springboot @Controller或@Service组件配置 @Value("${book.name}") private String name; 二、获取类型安全的自定义配置的值 applic 阅读全文
posted @ 2020-03-15 20:42 一路繁花似锦绣前程 阅读(303) 评论(0) 推荐(0) 编辑
 

2020年3月11日

摘要: 一、创建maven项目,打包方式为jar包 二、引入依赖 <!-- 父级依赖 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <v 阅读全文
posted @ 2020-03-11 21:40 一路繁花似锦绣前程 阅读(154) 评论(0) 推荐(0) 编辑
 
摘要: 一、量词 二、方括号 三、修饰符 四、元字符 阅读全文
posted @ 2020-03-11 10:23 一路繁花似锦绣前程 阅读(120) 评论(0) 推荐(0) 编辑
 

2020年3月3日

摘要: 一、引入依赖 npm i sass sass-loader -D 二、配置webpack的loader { test: /\.sass$/, loaders: ['style', 'css', 'sass'] } 三、使用 <style lang="scss"> @import '*.scss'; 阅读全文
posted @ 2020-03-03 11:02 一路繁花似锦绣前程 阅读(230) 评论(0) 推荐(0) 编辑
 

2020年2月28日

摘要: 一、elementui npm i element-ui -S // ******************************** import Vue from 'vue'; import ElementUI from 'element-ui'; import 'element-ui/lib/ 阅读全文
posted @ 2020-02-28 13:35 一路繁花似锦绣前程 阅读(189) 评论(0) 推荐(0) 编辑
 

2020年2月27日

摘要: main.js import Vue from 'vue' import App from './App' import router from './router' import store from './vuex' import Axios from 'axios' Vue.prototype 阅读全文
posted @ 2020-02-27 23:00 一路繁花似锦绣前程 阅读(323) 评论(0) 推荐(0) 编辑