码迷,mamicode.com
首页 >  
搜索关键字:.classpath    ( 3408个结果
spring之bean之间的关系
两种关系:继承、依赖 一、继承关系 Address.java package com.gong.spring.beans.autowire; public class Address { private String city; private String street; public Strin ...
分类:编程语言   时间:2020-01-05 15:57:22    阅读次数:100
IDEA运行出现Command line is too long. Shorten command line for testMLDome1 or also for Application default configuration
在.idea的workspace.xml文件的 <component name="PropertiesComponent">... </component>标签中加入 <property name="dynamic.classpath" value="true" /> ...
分类:移动开发   时间:2020-01-04 14:43:10    阅读次数:235
2019-1-4日,记录一下这两天使用jni调用C++的过程
项目有一个需要控制ipc的功能,我之前取巧用了visca协议,走网口的,结果同组的C++的同事听闻我这样控,问了我控制方法,发现我这样控制很简单,而他使用onvif协议写了很多内容,遂验证该协议是否能对其他大厂的IPC进行控制,测了一个海康威视的摄像头就不行了,上网查了一下发现visca协议大多支持 ...
分类:编程语言   时间:2020-01-04 14:19:15    阅读次数:74
App爬虫----adb的使用
下载JDK和JRE 新建系统变量:JAVA_HOME,变量值为:C:\Program Files\Java\jdk1.8.0_161 新建系统变量:CLASSPATH ,变量值为:.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar; 在path下配置 ...
分类:移动开发   时间:2020-01-03 01:01:34    阅读次数:146
Hadoop分布式集群安装
一 整体介绍 1.1 硬件环境 本文使用三台服务器搭建hadoop集群,使用Centos7.5系统,服务器均有独立ip 1.2 部署的软件 部署服务:namenode(HA),resourcemanager(HA),zookeeper,hbase(HA),spark,kafka,geomesa 版本 ...
分类:其他好文   时间:2019-12-31 14:12:21    阅读次数:94
Drools入门demo
第一步POM加入依赖包 <dependency> <groupId>org.kie</groupId> <artifactId>kie-api</artifactId> <version>7.1.0.Final</version> </dependency> <dependency> <groupI ...
分类:其他好文   时间:2019-12-30 21:37:07    阅读次数:91
类加载器和双亲委派
类加载器 启动类加载器:加载Java的核心类,比如System,String等。 拓展类加载器:加载jre的拓展类库。 应用程序类加载器:加载CLASSPATH下的jar包和类,也就是程序员自定义的类。 自定义加载器:用户自定义的加载器。 双亲委派 当类加载器收到一个类加载请求时,先尝试扔给让父加载 ...
分类:其他好文   时间:2019-12-30 19:31:13    阅读次数:68
springboot+mybatis 多数据库支持
1.配置application.yml mybatis: mapper-locations: classpath:/mybatis/mapping/*.xml configuration: map-underscore-to-camel-case: true #开启驼峰命名 database-id: ...
分类:数据库   时间:2019-12-30 14:13:05    阅读次数:549
springboot 踩坑之路之 Configuration Annotation Proessor not found in classpath
1.出现spring boot Configuration Annotation Proessor not found in classpath的提示是在用了@ConfigurationProperties这个注解时,所以问题出现在ConfigurationProperties注解。 2.根据提示的 ...
分类:编程语言   时间:2019-12-30 11:35:40    阅读次数:71
<<前端团队规范>>vscode统一配置
统一工作区配置 ...
分类:其他好文   时间:2019-12-30 11:21:02    阅读次数:247
3408条   上一页 1 ... 28 29 30 31 32 ... 341 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!