笔记
正人君子!
本人精通各种语言输出hello,world
展开
-
java生成稀疏数组与还原
主函数public static void main(String[] args) { //稀疏数组 //行 列 有效个数 //行 列 数据 int [][] array1=new int[11][11]; array1[1][2]=1; array1[2][3]=2; array1[1][3]=1; array1[2][4]=2; System.out.prin原创 2021-11-17 23:27:21 · 372 阅读 · 0 评论 -
SpringBoot简单邮件发送
1、导包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency>2、配置yaml文件spring: mail: username: QQ邮箱 passwo原创 2021-11-06 11:47:26 · 163 阅读 · 0 评论 -
Swagger笔记
因为使用的是swagger3.0所以需要多导入一个包springfox-boot-starter新版访问swagger路径为http://localhost:8081/swagger-ui/index.htm <!--导入swagger包--> <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui --> <dependency>原创 2021-11-05 16:47:42 · 136 阅读 · 0 评论 -
Spring Security笔记
这里使用的thymeleaf做渲染 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <原创 2021-11-03 19:58:14 · 96 阅读 · 0 评论 -
SpringBoot国际化
1、首先设置号idea的字符格式2、在resources下创建login.properties、login_zh_CN.properties、login_en_US.properties3、静态资源设置<body class="text-center"> <form class="form-signin" action="dashboard.html"> <h1 class="h3 mb-3 font-weight-normal" th:text="#{原创 2021-10-29 16:10:45 · 165 阅读 · 0 评论 -
SpringBoot控制台打印输出项目启动路径
SpringBoot控制台打印输出项目启动路径 ConfigurableApplicationContext application= SpringApplication.run(Springboot04WebApplication.class, args); Environment env = application.getEnvironment(); String ip = InetAddress.getLocalHost().getHostAddress();原创 2021-10-28 11:22:57 · 718 阅读 · 0 评论 -
Vue-elementUI快速上手
首先创建工程1、创建一个名为DomeVue工程//初始化vue init webpack DomeVue22、安装依赖 vue-router、element-ui、sass-loader、node-sass四个插件//进入工程目录cd DomeVue2//安装Vue-routernpm install vue-router --save-dev//安装element-uinpm i element-ui -s//安装依赖npm install//安装sass加载器cnpm i原创 2021-10-23 16:14:40 · 283 阅读 · 0 评论 -
基于第一个vue-cli进行测试学习
基于第一个vue-cli进行测试学习;先查看node_modules中是否存在vue-routervue-router是一个插件包,所以我们还是需要用npm/cnpm来进行安装的。打开命令行工具,进入你的项目目录,输入下面命令。安装npm install vue-router --save-dev如果在一个模块化工程中使用它,必须要通过Vue.use()明确地安装路由功能:1、先删除没用的文件2、components目录下存放我们自定义的组件3、定义组件content.vue<t原创 2021-10-22 22:25:52 · 95 阅读 · 0 评论 -
Vue小结及webpack打包
常用属性:v-ifv-else-ifv-elsev-forv-on 绑定事件 简写为 @v-model 数据双向绑定v-bind 给组件绑定数据 简写为 :组件化组合组件slot插槽组件内部绑定事件需要用到this.$emit(“事件名称”,参数)computed:计算属性的特色,缓存计算数据Vue遵循Soc 关注度分离原则,通信使用axiosVue的开发都是要基于NodeJS,实际开发采用vue-cli脚手架开发,vue-router路由,vuex做状态管理;Vue UI原创 2021-10-22 22:25:38 · 363 阅读 · 0 评论