摘要:
pom.xml配置 <!-- druid --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.1.10</version> </de 阅读全文
摘要:
组件传值 <script> import LunBo from "./LunBo"; export default { name: 'Home', components: {LunBo}, data(){ return { lists:[ {title:'标题1',color:'#ffbb78'}, 阅读全文
摘要:
单节点安装 cassandra由Java开发,需要提前配置JDK环境 开源版本安装 下载地址 http://archive.apache.org/dist/cassandra/ wget http://archive.apache.org/dist/cassandra/3.11.6/apache-c 阅读全文
摘要:
vue-cli4脚手架搭建一 vue create vue3 cd vue3 yarn serve http://localhost:8080/#/ main.js文件 import Vue from 'vue' import App from './App.vue' import router f 阅读全文
摘要:
$ rustc --versionrustc 1.44.0 (49cae5576 2020-06-01) 将代码存在到不同的文件 main.rs mod aa; fn main() { println!(" "); aa::aa1(); } mod aa表示引入aa模块,在rust中一个文件名就代表 阅读全文
摘要:
涉及内容 html css javascript node.js npm webpack 2.9.6是常用版本 vue-cli4是基于webpack的 webpack是基于node.js的 npm:node package manager,是nodejs的包管理器,通常使用淘宝镜像;这是npmjs. 阅读全文
摘要:
安装参考 https://blog.csdn.net/huwh_/article/details/77169858 Go 1.5引入了vendor文件夹,其对语言使用,go命令没有任何影响。若某个路径下边包含vendor文件夹,则在某处引用包时,会优先搜索vendor文件夹下的包。 在Go 1.5开 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>动态坐标轴</title> <link rel="stylesheet" type="text/css" href="../../css/styles.css" 阅读全文
摘要:
Enums and Pattern Matching 摘要 枚举定义 enum IpAddrKind { V4, V6, } 枚举方法 fn main() { enum Message { Quit, Move { x: i32, y: i32 }, Write(String), ChangeCol 阅读全文
摘要:
概述 在XML配置数据源,并将数据源注册到JDBC模板 JDBC模板关联业务增删改查 在XML配置数据源 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" 阅读全文