/** * @author wuyimin * @create 2021-05-06-8:56 * @description AOP面向方面/切面编程:在不通过修改源代码的方式添加新的功能 * 权限判断模块配置到副本模块中 * AOP底层原理:动态代理 * 两种代理情况 * 第一种有接口:使用jdk ...
分类:
其他好文 时间:
2021-06-15 18:28:51
阅读次数:
0
这个问题的原因是navicat不能创建oci的环境。 在工具-->选项-->其他-->oci中配置中默认是指向在安装路径下的instantclient_10_2/oci.dll。 按默认的其实是不对的,这个oci.dll应该是指向oracle的home路径下bin文件夹里的oci.dll D:\Or ...
分类:
其他好文 时间:
2021-06-15 18:19:41
阅读次数:
0
配置项 为了方便的图片的保存与展示,可以在 配置文件中,指明 图片资源的路径 1 import os 2 ? 3 ? 4 class Config(object): 5 DEBUG = True 6 SQLALCHEMY_DATABASE_URI = 'mysql://root:mysql@127. ...
分类:
其他好文 时间:
2021-06-15 18:16:21
阅读次数:
0
from sqlalchemy import Column,String,create_engine,MetaData from sqlalchemy.orm import sessionmaker from sqlalchemy.ext.declarative import declarative ...
分类:
数据库 时间:
2021-06-15 18:05:12
阅读次数:
0
1、说明 ROS的节点通信模式有多种,本文介绍service-client模式 本文的示例功能是计算 sum=a+b-c*n 下文中功能包的创建步骤不再做详细介绍 2、创建功能包 仍然和前例使用同一个工作空间 cd ~/projrct/catkin_ws/ catkin_create_pkg tes ...
分类:
其他好文 时间:
2021-06-15 17:54:40
阅读次数:
0
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2021-06-13 10:45:15
阅读次数:
0
createWebHistory 生产环境下不带# const router = createRouter({ history: createWebHistory(), routes }); createWebHashHistory路由模式路径带#号 const router = createRou ...
分类:
其他好文 时间:
2021-06-13 10:21:54
阅读次数:
0
遇到的问题(1)error LNK2019: 无法解析的外部符号 __imp____glutInitWithExit@12,该符号在函数 _glutInit_ATEXIT_HACK@8 中被引用(2)error LNK2019: 无法解析的外部符号 __imp____glutCreateWindow ...
分类:
其他好文 时间:
2021-06-13 10:02:17
阅读次数:
0
安装完Anaconda利用conda创建了虚拟环境,但是启动jupyter notebook之后却找不到虚拟环境。 实际上是由于在虚拟环境下缺少kernel.json文件,解决方法如下: 创建环境: conda create -n 环境名称 也可以创建环境时直接加入ipykernel,比如:cond ...
分类:
其他好文 时间:
2021-06-13 09:45:30
阅读次数:
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