- 博客(54)
- 资源 (11)
- 问答 (3)
- 收藏
- 关注
原创 一些常见问题
No qualifying bean of type 'com.xx.service.ImsMessageService' available解决 在service的实现层加上@Service("")注释java.lang.VerifyError:问题原因:一些类冲突了,我的是不同的jar包冲突,net.sf.json.JSONObject;和groovy.json...javaS...
2018-10-29 10:56:41 167
原创 Angular An accessor cannot be declared in an ambient context
ng update --next @angular/cli --force
2020-04-02 16:04:01 4890
原创 .NET Framework 3.5 安装失败
按照网上说的再windows功能里下载总是失败下载一个系统镜像 ,https://www.microsoft.com/en-us/software-download/windows10windows.ios解压出来管理员模式运行命令符,,输入 回车Dism /online /enable-feature /featurename:NetFX3 /All /Source:D:\...
2020-03-18 21:30:44 345
原创 git服务器 搭建
https://blog.csdn.net/qq285679784/article/details/91534252添加输入git add README.mdgit rm -r README.md提交输入git commit -m “first commit”选择仓库输入git remote add origin ssh://admin@192.168.17.71:29418/T...
2020-02-07 21:45:53 252
原创 springboot 练习
搭建好一个springboot项目 ,第一件事就是要做前后端的交互1.遇到第一个问题,跨域的问题,添加拦截器package com.practice.springboot.util;import org.springframework.web.servlet.HandlerInterceptor;import org.springframework.web.servlet.Mode...
2019-04-03 17:32:36 581
原创 极光推送 开发环境收不到消息
环境 : xcode10、19年3月,不知道为什么,现在好像导不出 .p12证书,所以一度以为是证书设置的问题,最后几经周折发现xcode10-->file-->Project Settings --> Build System 设为 Legacy Build System原先为 NewBuild System...
2019-03-06 15:29:42 563
原创 xcode10 library not found for -lstdc++.6
因为导入微信支付插件cordova-plugin-wechat所以报这个错,最后说的把xcode9 里的 复制到 xcode 10 不管用,打开tagets->Build Phases ->Link Binary With Libraries下找到这个库删除就OK了...
2019-02-28 15:59:56 271
原创 ionic 启动页前黑屏 启动页后白屏问题
解决启动页后白屏问题在config.xml里<preference name="ShowSplashScreenSpinner" value="false" /> <preference name="ScrollEnabled" value="false" /> <preference name="android-minSd
2019-02-19 15:07:11 916
原创 微信支付 遇坑总结
统一下单,提示签名错误检查100遍,最后发现商户号不对,一定要登录,微信给你发的邮件里的商户号ionic 前端报错 普通错误注意包名/签名等是否和app一致包名不一致,请检测是否与开放平台包名一致在确定包名和签名没问题的情况下,卸载重装微信...
2019-02-13 10:08:04 556
原创 ios 开发
xcode 历史版本下载https://developer.apple.com/download/moremac 解压xcode8.3.3.xip 报错 :解压xcode.xip cpio read error: Undefined error解决 把系统升级到 10.11.6证书问题解决 创建证书并双击添加从证书颁发机构请求证书未知错误=-2147414007解决...
2019-01-12 09:07:45 342
原创 获取 app应用签名
第一种方式,本地获取切换到本机 .Android文件夹cd C:\Users\ASUN-DEV3\.android获取 keytool -list -v -keystore debug.keystoremd5:..........sha1:...........第二种方式,使用微信工具获取下载地址 https://open.weixin.qq.com/cgi-bin/s...
2019-01-10 13:45:04 8231
原创 ionic3 menu 侧滑菜单
侧滑菜单需要写在app.component.ts里,不知道其它单独的模块可以不测滑菜单 app.html<ion-menu [content]="content"> <ion-header> <ion-toolbar> <ion-title>Menu</ion-title> </ion-..
2019-01-09 14:24:30 970
原创 修改应用在浏览器导航栏图标
如csdn导航栏我们修改自己的图标,在应用主页head中加这句话<link rel="icon" type="image/x-icon" href="favicon.ico">favicon.ico就是自己的logo,名字好像不能修改...
2019-01-09 13:40:30 1333
原创 ionic3 支付宝支付插件
其实网上的插件大部分可以用,之前遇到一个坑,就是用支付宝沙箱账户测试,然后一直调不通,解决办法如下:首先插件:ionic cordova plugin add cordova-plugin-gubnoi-alipay --variable APP_ID=cordova.plugins.ali.pay(data.payResponse,(success)=>{ //支付...
2018-12-14 09:59:12 934
原创 支付宝授权
电脑板授权https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=2017062707578742&scope=auth_user&redirect_uri=https%3A%2F%2Fwww.baidu.com手机打开支付宝客户端授权window.location.href="alipays:...
2018-12-12 14:46:59 14327
原创 Super Map 画箭头
var vectorLayer= new SuperMap.Layer.Vector(); var start = new SuperMap.Geometry.Point(0,0); var end = new SuperMap.Geometry.Point(0,20); var lineString = new SuperMap.Geometry.Li...
2018-11-19 13:50:56 1012
原创 oracle max()函数 比较string类型 预期错误
数据集select "MAX"("arms_id") from IMS."arms" 结果 200原因是查询字段 arms_id 是vachar2类型,转为int型select "MAX"(cast("arms_id" as int)) from IMS."arms" 结果 10027 正确 ...
2018-11-09 17:07:18 4483
原创 Ajax提交post请求返回404错误
前台ajax请求,报错404;但是后台却成功执行;正常来讲,404 not found是没找到,url错误,但这里却执行了,原因 后台有 return return的值会作为http请求的一个页面 所以肯定会报找不到错误解决 1 直接去掉return,没有页面跳转可以不用return,要向前台传值可以用 out.println(1); 或 response.g...
2018-11-06 15:58:12 12538 4
转载 tomcat启动就运行我的写的java类
关于自启动,有两个关键的点:1. 需要修改一个配置文件 名字叫web.xml在webRoot下的WEB-INF中。 如果你没有我图片一样的路径,很遗憾,那就是你的工程类型创建错了。 记得要new一个web server project。 这个文件里面简单的添加三行代码,告诉tomcat,我要运行一个自启动类,我给他起名叫做autoRun,就行了。如下图,蓝色部分是我添加的代码。 ...
2018-10-29 16:31:10 1971
原创 meavn the container 'maven dependencies' references non existing library
the container 'maven dependencies' references non existing library有个jar包下载错误到本地mevan库下 删掉项目 --》 mevan -->updata project....
2018-10-27 16:39:34 7175
原创 mqtt传输中文报错 Malformed UTF
AMQJS0009E Malformed UTF data:f9 4d -5e. 例子里中文就报错改为 ; UTF8Buffer msg=new UTF8Buffer(object.toString());
2018-10-26 10:55:22 4719
原创 navicat for oracle 免安装下载及配置教程
首先下载 Navicat for oracle 、 instantclient-sqlplus-nt-12.1.0.2.0 、instantclient-basic-nt-12.1.0.2.0下载地址:https://download.csdn.net/download/qq_36986305/107453021.解压 navicat, 2.把instantclient-basic-n...
2018-10-26 09:46:13 2982
原创 访问eclipse项目中文件路径问题
首先文件要放在webapp(webContent)下,所以存储时需要获得webapp路径(自行百度),在servlet的init下 String path = getServletContext().getRealPath("/"); 获得 C:\Users\ASUN-DEV3\eclipse-workspace\.metadata\.plugins\org.eclipse.ws...
2018-10-24 09:10:09 2728
原创 MongoDB 的一些基本操作
MongoDB设置缓存时间 def __init__(self,client=None,expires=timedelta(days=30)): self.client = MongoClient('localhost', 27017) self.db=self.client.cache self.db.webpage.create_index...
2018-09-14 09:41:03 196
原创 Selenium 导航操作 Navigating
element = driver.find_element_by_id("passwd-id") #通过id获取元素element = driver.find_element_by_name("passwd") #通过name获取元素element = driver.find_element_by_xpath("//input[@id='passwd-id']") #通过使用xpath匹配...
2018-09-07 16:00:29 498
原创 关于python2与python3一些导包的区别
python2 ---------------------------------------------------->> python3import urlparse import urllib.parse urllib2 import urllib.request robotparser urllib.robotpa...
2018-09-05 10:07:54 1528
原创 百度云 文字识别 身份证识别
身份识别package ai1;import java.util.HashMap;import org.json.JSONObject;import com.baidu.aip.ocr.AipOcr;/* 身份证识别 */public class Sample { // 设置APPID/AK/SK:百度云自己的帐号信息 public stat...
2018-08-28 09:11:59 973
原创 Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request p
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; Autowirednested exception is我的原因是,在一个Controller里new 别一个 Controller 这样时可以的;然后再调用一...
2018-08-23 18:49:29 14771 1
原创 Map china not exists. You can download map file on
如果你有China.js 那么多半是顺序的问题China.js要放在后面china.js echarts.js 下载地址https://download.csdn.net/download/qq_36986305/10609627
2018-08-17 09:57:11 3915
原创 echarts
饼状图<script type="text/javascript">var data=getData();//指定图标的配置和数据var option = { title : { }, tooltip : { trigger: 'item', formatter: "{a} <br/&...
2018-08-16 13:51:23 254
原创 openlayers 基本操作 添加,删除Layers
添加,删除Layersmap.removeLayer(gaodeMapLayer);map.addLayer(gaodeMapLayer);
2018-08-15 17:46:18 24504 6
原创 pyrhon import cv2 DLL load failed找不到模块问题 导入opencv_python
1.首先,你要安装有python(python下载地址https://download.csdn.net/download/qq_36986305/10564682) 控制台输入python,没问题2,然后你需要安装numpy和opencv_python包(下载地址https://www.lfd.uci.edu/~gohlke/pythonlibs/) 切换...
2018-08-14 20:54:21 1681 5
原创 seatCharts 地铁选座 重新加载座位
修改js源码开头部分<!doctype html><html><head><title>jQuery在线选座位插件seat-charts - 脚本之家</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"
2018-08-13 15:07:19 1723
原创 arcGis 用程序添加要素;基于arcGis Service rest 的 addFeatures ;unable to add features
先贴代码;url 是arcGis Service Rest 的地址 addFeaturesFeature Feature是你要添加的要素,格式特别注意,对应自己想添加的类型f 是Format类型 json 和 pjson都可以dataType 数据类型 jsonp 据说可以解决跨域问题特别注意:1. Feature外层一定要有[ ];...
2018-07-26 18:32:32 2322
Visual C++ Redistributable for Visual Studio 2015
2018-08-14
api-ms-win-downlevel-shlwapi-l1-1-0.dll
2018-08-14
depends.exe 查看缺少哪些dll
2018-08-14
openlayers对矢量图(多边形) 的增删改查
2018-07-24
TA创建的收藏夹 TA关注的收藏夹
TA关注的人