编写引导类注意要标明注解 @SpringBootApplication SpringApplication.run(BootWeb01Application.class, args); 再编写main方法的时候使用run方法 起步依赖spring-boot-starter-parent 父工程,主要 ...
分类:
编程语言 时间:
2021-07-05 17:08:07
阅读次数:
0
源码地址:https://gitee.com/fighter3/eshop-project.git 持续更新中…… 在上一个章节,我们已经成功地将服务注册到了Nacos注册中心,实现了服务注册和服务发现,接下来我们要做的是服务间调用。 想一下,我们日常调用接口有哪些方式呢?常见有的有JDK自带的网络 ...
分类:
编程语言 时间:
2021-06-28 20:57:28
阅读次数:
0
getUserInfo <button open-type="getUserInfo" bindgetuserinfo="getUserInfo">获取信息</button> <block wx:if="{{userInfo}}"> <text>{{userInfo.nickName}}</text ...
分类:
微信 时间:
2021-06-21 20:10:50
阅读次数:
0
# -*- coding:utf-8 -*- import requests import datetime import time import threading ''' allow_redirects = False禁止重定向,添加在request参数后 get请求用params传参 post ...
分类:
编程语言 时间:
2021-06-19 19:04:02
阅读次数:
0
下载unity 在官网下载unity unity有三个版本,个人版免费,pro和专业版收费. 个人版 在导出exe文件时不能去掉水印片头。其他版本可以。 地址[https://store.unity.com/cn/download?ref=personal] 安装 安装的时候 注意有个vs下载 如果 ...
分类:
编程语言 时间:
2021-06-18 19:07:00
阅读次数:
0
glob文件操作函数 glob是python自带的一个操作文件的相关模块,由于模块功能比较少,所以很容易掌握。用它可以查找符合特定规则的文件路径名。使用该模块查找文件,只需要用到: “*”, “?”, “[]”这三个匹配符; ”*”匹配0个或多个字符; ”?”匹配单个字符; ”[]”匹配指定范围内的 ...
分类:
其他好文 时间:
2021-06-17 16:51:21
阅读次数:
0
# 1 安装 pip install coreapi # 2 在路由中配置 from rest_framework.documentation import include_docs_urls urlpatterns = [ ... path('docs/', include_docs_urls(t ...
分类:
其他好文 时间:
2021-06-13 09:22:11
阅读次数:
0
EnableAutoConfiguration This class-level annotation tells Spring Boot to “guess” how you want to configure Spring, based on the jar dependencies that ...
分类:
其他好文 时间:
2021-06-04 19:47:18
阅读次数:
0
国际化 internationalization i18n 支持不同的语言环境 如果支持中文环境 需要在res目录下创建一个values-zh目录 在这个目录中放一个string.xml 这个xml文件中所有的内容都是用中文写的 写代码的时候 涉及到字符串的内容 能使用R.string 或者布局文件 ...
分类:
其他好文 时间:
2021-06-02 20:02:07
阅读次数:
0
html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; height: 100%; } body { margin: 0; font-si ...
分类:
Web程序 时间:
2021-05-24 13:06:47
阅读次数:
0