mysql 5.7.12 php 7.1 apache 24 windows 10 64bit 下载好代码后, 1、首先把更目录的sql.sql导入到数据库2、打开application\config\database.php文件,找到数据库配置字段 如下:$db['default']['hostn ...
分类:
其他 时间:
2018-10-17 13:24:40
收藏:
0 评论:
0 赞:
0 阅读:
157
这是入门的第三天了,从简单的hello spring开始,已经慢慢接近web的样子。接下来当然是读取简单的对象属性了。 于是按照网上各位大神教的,简单写了个controller,如上一篇,其他配置不需要做任何改动。 ...
分类:
编程语言 时间:
2018-10-17 13:24:22
收藏:
0 评论:
0 赞:
0 阅读:
112
名字kmesh技术:proxy,kcp,consul## proxyproxy分为前端和后端前端代理服务层,包括外部的service后端实现负债均衡## kcpkcp 基于udp,能够实现快速的传输## consul实现了服务注册,服务的健康检查,多中心## 外部服务的注册外部服务要注册到前端代理中... ...
分类:
其他 时间:
2018-10-17 13:24:06
收藏:
0 评论:
0 赞:
0 阅读:
214
关于若依分模块创建项目可参考:https://www.cnblogs.com/conswin/p/9766186.html 了解uflo2,uflo2是一套由BSTEK自主研发的基于Java的工作流引擎,它以Spring为基础框架,采用Hibernate作为持久层,可运行于所有主流程应用服务器及流数 ...
分类:
其他 时间:
2018-10-17 13:23:51
收藏:
0 评论:
0 赞:
0 阅读:
738
1.基本的存储过程 (1).查询所有学员的信息if exists(select * from sysobjects where name='usp_getAllstudent')drop proc usp_getAllstudentgocreate procedure usp_getAllstude ...
分类:
其他 时间:
2018-10-17 13:23:30
收藏:
0 评论:
0 赞:
0 阅读:
140
webservice 基础使用 java 与tomcat使用http://cxshun.iteye.com/blog/1275408 spring mvc中使用https://www.cnblogs.com/sharpest/p/7784119.html spring boot 使用https:// ...
分类:
编程语言 时间:
2018-10-17 13:23:12
收藏:
0 评论:
0 赞:
0 阅读:
193
当我们学习树这种数据结构时会牵扯到很多的东西,基本上学习数据结构的一大重心都围绕着树这一个最基础的结构 但是问题来了!平时我们都是直接自己在脑子里或者图纸上先描述好这个树,然后我们在对控制台输入我们想要的! 那么我们如何能够确定自己创建的一颗树来是正确的呢? 有很多种办法可以(这里说两种) 我们可以 ...
分类:
其他 时间:
2018-10-17 13:22:48
收藏:
0 评论:
0 赞:
0 阅读:
165
echo "<pre>";print_r(var);echo "</pre>"; ...
分类:
其他 时间:
2018-10-17 13:21:36
收藏:
0 评论:
0 赞:
0 阅读:
143
IF exists (select * from syscolumns where name='字段名' and id=object_id('表名')) begin select '已存在,不需添加!' end ELSE begin ALTER TABLE dbo.MQ_PhysicalRoomAn... ...
分类:
数据库技术 时间:
2018-10-17 13:21:03
收藏:
0 评论:
0 赞:
0 阅读:
472
环境: ubuntu16.04 cuda8.0 cudnn5.0 已安装过caffe1.0 tensorflow1.2 教程 https://github.com/weiliu89/caffe/tree/ssd Installation git clone https://github.com/we ...
分类:
其他 时间:
2018-10-17 13:20:24
收藏:
0 评论:
0 赞:
0 阅读:
199
Failed to create a Maven project: 'xxx/pom.xml' already exists in VFS idea创建项目后,发现项目有问题,删除后重新创建,提示错误如下。解决办法1.通过idea打开任意一个项目2.File > Invalidate Caches ...
分类:
其他 时间:
2018-10-17 13:20:08
收藏:
0 评论:
0 赞:
0 阅读:
1718
前言:接着上篇继续学习MongoDB,这次学习的是在Linux下安装MongoDB 环境:centos7.3 安装版本:MongoDB4.0 1、创建yum包文件 #在文件中写入下面内容,保存退出 [mongodb-org-4.0]name=MongoDB Repositorybaseurl=htt ...
分类:
数据库技术 时间:
2018-10-17 13:19:50
收藏:
0 评论:
0 赞:
0 阅读:
148
Given a collection of distinct integers, return all possible permutations. Example: AC code: Runtime: 12 ms, faster than 42.11% of C++ online submissi ...
分类:
其他 时间:
2018-10-17 13:19:32
收藏:
0 评论:
0 赞:
0 阅读:
137
1.Web容器初始化过程 2.SpringMVC中web.xml配置 3.认识ServletContextListener 4.认识ContextLoaderListener 5.DispatcherServlet初始化(HttpServletBean ? FrameworkServlet ? Di ...
分类:
编程语言 时间:
2018-10-17 13:19:15
收藏:
0 评论:
0 赞:
0 阅读:
147
https://blog.csdn.net/koflance/article/details/63262484 1. 介绍 类似于XPath在xml文档中的定位,JsonPath表达式通常是用来路径检索或设置Json的。其表达式可以接受“dot–notation”和“bracket–notation ...
分类:
Web开发 时间:
2018-10-17 13:18:56
收藏:
0 评论:
0 赞:
0 阅读:
241
COMP3419Graphics and MultimediaAssignment Project(Semester 2, 2018)1. Intelligent Animation (Option-1)1.1 GeneralThis is an individual assignment (Opt ...
分类:
Web开发 时间:
2018-10-17 13:18:41
收藏:
0 评论:
0 赞:
0 阅读:
202
Given two non-empty binary trees s and t, check whether tree t has exactly the same structure and node values with a subtree of s. A subtree of s is a ...
分类:
其他 时间:
2018-10-17 13:18:21
收藏:
0 评论:
0 赞:
0 阅读:
155
蓝牙Profile Bluetooth的一个很重要特性,就是所有的Bluetooth产品都无须实现全部 的Bluetooth规范。为了更容易的保持Bluetooth设备之间的兼容,Bluetooth规范中定义了Profile。Profile定义了设备如何实现一种连接或者应用,你可以把Profile理 ...
分类:
其他 时间:
2018-10-17 13:17:57
收藏:
0 评论:
0 赞:
0 阅读:
138
Python 3最重要的新特性之一是对字符串和二进制数据流做了明确的区分。文本总是 Unicode,由 str 类型表示,二进制数据则由 bytes 类型表示。Python 3不会以任意隐式的方式混用 str 和 bytes ,你不能拼接字符串和字节流,也无法在字节流里搜索字符串(反之亦然),也不能 ...
分类:
编程语言 时间:
2018-10-17 13:17:28
收藏:
0 评论:
0 赞:
0 阅读:
155
"原题链接" 二分图最大匹配板子。 每个奶牛向它愿意去的牛棚连边,跑二分图最大匹配即可。 这里我用的是匈牙利算法。 cpp include include using namespace std; const int N = 410; const int M = N N; int fi[N], ne ...
分类:
其他 时间:
2018-10-17 13:17:11
收藏:
0 评论:
0 赞:
0 阅读:
145