上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 74 下一页
摘要: 原文:https://blog.csdn.net/vvvzcs/article/details/81625547 groupId,artfactId,version,type,classifier,scope,systemPath,exclusions,optional 是 maven的9种依赖属性 阅读全文
posted @ 2020-06-25 09:42 生如逆旅,一苇以航 阅读(1220) 评论(0) 推荐(0) 编辑
摘要: application.properties server.port=8989 server.servlet.context-path=/springboot_day3 name=xiaoguo 控制器调用 package com.baizhi.controller; import org.spri 阅读全文
posted @ 2020-06-08 21:56 生如逆旅,一苇以航 阅读(184) 评论(0) 推荐(0) 编辑
摘要: application.properties 默认取开发版本: server.servlet.context-path=/springboot_day2 spring.main.lazy-initialization=true spring.profiles.active=dev applicati 阅读全文
posted @ 2020-06-08 21:11 生如逆旅,一苇以航 阅读(1403) 评论(0) 推荐(0) 编辑
摘要: pom.xml中添加: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> 想要直接访问resour 阅读全文
posted @ 2020-05-25 07:11 生如逆旅,一苇以航 阅读(214) 评论(0) 推荐(0) 编辑
摘要: <span th:if="$(user.age) eq 23"></span> 运算符: gt :great than (大于) > ge :great equal (大于等于) >= eq :equal (等于) = lt :less than (小于) < le :less equal (小于等 阅读全文
posted @ 2020-05-24 22:40 生如逆旅,一苇以航 阅读(216) 评论(0) 推荐(0) 编辑
摘要: thymeleaf单个属的展示: Thymeleaf基本使用: 使用时必须在页面中加入thymeleaf如下命名空间: <html lang="en" xmlns:th="http://www.thymeleaf.org"> 展示单个数据: 设置数据: model.addAttribute("nam 阅读全文
posted @ 2020-05-24 09:49 生如逆旅,一苇以航 阅读(423) 评论(0) 推荐(0) 编辑
摘要: for in循环: let testArr=["111","222","3333"]; for(let i in testArr){ console.log(i); } //定义的i得到的是数组的下标: 输出的数据: 111 222 3333 for of循环: let testArr=["111" 阅读全文
posted @ 2020-05-22 10:48 生如逆旅,一苇以航 阅读(620) 评论(0) 推荐(0) 编辑
摘要: //点击转动需要的样式:.orderInfo0122 { animation: customAnimation1 500ms; animation-fill-mode: forwards; } @keyframes customAnimation1{ from{ transform: rotate( 阅读全文
posted @ 2020-05-21 09:42 生如逆旅,一苇以航 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: lint检查对于app来说也是很重要的,可以检查出很多问题。 lint配置 从stackoverflow上扒了一个配置。 android { lintOptions { // true--关闭lint报告的分析进度 quiet true // true--错误发生后停止gradle构建 abortO 阅读全文
posted @ 2020-05-18 17:38 生如逆旅,一苇以航 阅读(1935) 评论(0) 推荐(0) 编辑
摘要: 在上一篇使用Spring Initializer创建Spring Boot项目 文章中,介绍了使用Spring Initializr创建Spring Boot项目,在本篇文章中,将一步一步介绍使用IntelliJ IDEA创建Spring Boot项目。 如果你尚未安装IntelliJ IDEA,你 阅读全文
posted @ 2020-05-16 19:36 生如逆旅,一苇以航 阅读(1111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 74 下一页