首页 > 2018年10月17日 > 全部分享
WAMP环境配置
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
(C)spring boot读取自定义配置文件时乱码解决办法
这是入门的第三天了,从简单的hello spring开始,已经慢慢接近web的样子。接下来当然是读取简单的对象属性了。 于是按照网上各位大神教的,简单写了个controller,如上一篇,其他配置不需要做任何改动。 ...
分类:编程语言   时间:2018-10-17 13:24:22    收藏:0  评论:0  赞:0  阅读:112
基于kcp,consul的service mesh实现
名字kmesh技术:proxy,kcp,consul## proxyproxy分为前端和后端前端代理服务层,包括外部的service后端实现负债均衡## kcpkcp 基于udp,能够实现快速的传输## consul实现了服务注册,服务的健康检查,多中心## 外部服务的注册外部服务要注册到前端代理中... ...
分类:其他   时间:2018-10-17 13:24:06    收藏:0  评论:0  赞:0  阅读:214
若依项目分模块集成uflo2
关于若依分模块创建项目可参考: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
Java WebService 参考文档
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
pre打印
echo "<pre>";print_r(var);echo "</pre>"; ...
分类:其他   时间:2018-10-17 13:21:36    收藏:0  评论:0  赞:0  阅读:143
SQL查询表中是否存在某个字段
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
caffe—ssd安装教程
环境: 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
IDEA Maven project: 'xxx/pom.xml' already exists in VFS
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 学习记录(二)yum安装
前言:接着上篇继续学习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
46. Permutations
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
Java web 加载过程
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
【转】JsonPath教程
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
COMP3419作业代做、代写HTML/css/web编程作业、代写Graphics and Multimedia作业、代做Intelligent Animation作业
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
572. Subtree of Another Tree
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的概念和常见种类(转)
蓝牙Profile Bluetooth的一个很重要特性,就是所有的Bluetooth产品都无须实现全部 的Bluetooth规范。为了更容易的保持Bluetooth设备之间的兼容,Bluetooth规范中定义了Profile。Profile定义了设备如何实现一种连接或者应用,你可以把Profile理 ...
分类:其他   时间:2018-10-17 13:17:57    收藏:0  评论:0  赞:0  阅读:138
2、python自学之路-数据类型之decode与encode
Python 3最重要的新特性之一是对字符串和二进制数据流做了明确的区分。文本总是 Unicode,由 str 类型表示,二进制数据则由 bytes 类型表示。Python 3不会以任意隐式的方式混用 str 和 bytes ,你不能拼接字符串和字节流,也无法在字节流里搜索字符串(反之亦然),也不能 ...
分类:编程语言   时间:2018-10-17 13:17:28    收藏:0  评论:0  赞:0  阅读:155
洛谷1894 [USACO4.2]完美的牛栏The Perfect Stall
"原题链接" 二分图最大匹配板子。 每个奶牛向它愿意去的牛棚连边,跑二分图最大匹配即可。 这里我用的是匈牙利算法。 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
872条   上一页 1 ... 29 30 31 32 33 ... 44 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!