先在官网下载最新稳定版本nginxhttp://nginx.org/en/download.html解压nginx包tar-xvfnginx-1.17.8.tar.gzcdnginx-1.17.8先yum安装nginx依赖:yum-yinstallgccgcc-c++yum-yinstallpcre-developensslopenssl-devel接下来编译:./configure--with-
分类:
其他好文 时间:
2020-02-22 23:54:40
阅读次数:
117
一开始按照网上的很多解决办法是: 启动类头部声明@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class}),但是这样会排除掉我自己的数据库配置, 检查了很多地方都没发现问题在哪里,最后自己猜想不论怎么修改applicati ...
分类:
编程语言 时间:
2020-02-22 09:39:09
阅读次数:
114
继承SpringBootServletInitializer可以使用外部tomcat(web容器启动项目),自己可以设置端口号,项目名。 继承之后要实现他的configure方法 1 @SpringBootApplication 2 @MapperScan({"com.eliansun.mapper ...
分类:
编程语言 时间:
2020-02-21 22:27:58
阅读次数:
208
Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to dete ...
分类:
编程语言 时间:
2020-02-21 12:36:39
阅读次数:
71
由于开发功能的需要,又懒得新建太多的class,所以ValueTuple是个比较好的偷懒方法,但是,由于WebApi需要返回序列化后的json,默认的序列化只能将ValueTuple定义的各个属性序列化成Item1...n 但是微软还是良心的为序列化留下入口,编译器会在每个返回ValueTuple< ...
1、 checking for OS+ Linux 3.10.0-327.el7.x86_64 x86_64checking for C compiler ... not found ./configure: error: C compiler cc is not found 解决方法:安装gcc ...
分类:
其他好文 时间:
2020-02-20 15:24:15
阅读次数:
86
ALTER PROCEDURE [dbo].[pro_ImportExcelByTime] AS BEGIN --第一步,开启高级功能 EXEC sp_configure ‘show advanced options‘, 1; RECONFIGURE; EXEC sp_configure ‘xp_c ...
分类:
数据库 时间:
2020-02-19 15:23:29
阅读次数:
100
wget https://bootstrap.pypa.io/get-pip.py python get-pip.py yum -y install gcc #下载文件 wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz #解压 ...
分类:
编程语言 时间:
2020-02-19 13:06:34
阅读次数:
81
概要SQLCLR我也不是十分明白.就不说了这里我用VSTOOLS来开发一个用于入门在使用SQLCLR时候需要懂得一些他的配置他有个轻型池高级设置有点关联他不支持sqlclr,我们是为了学习就不用担心.开启clr的它不支持UI这是sql语句,如下EXECsp_configure"clrenabled",1goRECONFIGURE关闭就是把值改为0开始构建clr应用程序1.打开V
分类:
数据库 时间:
2020-02-19 10:28:39
阅读次数:
251
1.1.1 map端连接-CompositeInputFormat连接类 (1)使用CompositeInputFormat连接类需要满足三个条件: 1)两个数据集都是大的数据集,不能用缓存文件的方式。 2)数据集都是按照相同的键进行排序; 3)数据集有相同的分区数,同一个键的所有记录在同一个分区中 ...
分类:
其他好文 时间:
2020-02-19 01:08:59
阅读次数:
59