- 浏览: 112952 次
- 性别:
- 来自: 广州
最新评论
文章列表
进行了以下尝试:
1、禁用IP6方式。
2、IP4地址,改为手动。填上静态地址。
如
地址:192.168.2.88
掩码:255.255.255.0
网关:192.168.2.1
及DNS不自动获取,填上你的路由网关,如 192.168.2.1。
自动路由也关闭。
如此之后,网络终于不会烦死人地老是连接越野了。
补充,还是有问题。
接着,参考:
https://blog.csdn.net/weixin_38516136/article/details/78407950
在浏览器中,把网络代理都打开。
好像又可以了?
2018-8-6更新:
我的电脑的 ...
问题:
使用Mybatis generator连接oracle去生成代码的时候,报错:Table configuration with catalog null, schema , and table did not resolve to any tables
可能原因之一是:
Power Designer 里导出的sql中,带上了双引号。如;
create table "fire_alarm"
(
"id" NUMBER(6) not null,
...
Cannot read lifecycle mapping metadata for artifact org.apache.maven.plugins:maven-compiler-plugin:maven-*plugin:3.1:runtime Cause: zip file is empty
pom.xml /zheng-pay-web line 1 Maven Project Build Lifecycle Mapping Problem
这里的情况是:
/D:/maven/repository/org/apache/maven/plugins/maven-resou ...
import org.apache.ibatis.annotations.Param;
//接口
void setStaff(@Param("channels")List<ChatChannel> channels, @Param("staffId") String staffId, @Param("staffName") String staffName);
<update id="setStaff" >
UPDATE chat_channel SET
...
查找指定名称的Datastore
public ManagedObjectReference getDatastore(String name) throws RuntimeFaultFaultMsg {
String path="datacenter/datastore";
ManagedObjectReference folder = vimPort.findByInventoryPath(serviceContent.getSearchIndex(), path);
ManagedObjectReference datastore=vimPor ...
介绍
http://www.eclipse.org/windowbuilder/
下载
http://www.eclipse.org/windowbuilder/download.php
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:security="http://www.springframework.org/schema/security"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
h ...
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'freemarkEngine' defined in class path resource [conf/app-resources.xml]: Cannot resolve reference to bean 'freemarkerConfiguration' while setting bean property 'configuration';
nested excepti ...
参考资料,官方的文档:v Sphere Web Services SDK Developer’sSetup GuideVMware v Sphere 6.0
一、开发环境准备
1、安装JAVA开发环境 JDK1.7+
安装到c:\java下,不要安装到C:\program files下,目录中有空格,执行脚本的时候会报错
3、下载vSphere Web Services SDK 6.0
http://communities.vmware.com/community/vmtn/developer/downloads
解压到c:\devprojects下
二、开发环境配置
1、设置系统变量 ...
//延迟执行展开树
function expanLessonTree(){
var zTree = $.fn.zTree.getZTreeObj("lessonTree");
var nodes = zTree.getNodes();
if(nodes!=null){
var treeNode=nodes[0];
zTree.expandNode(treeNode);
}
}
$(document).ready(function() {
$(window).load(functi ...
前段时间不能访问googlecode,结果,一直安装不了 veloclipse。
这回兜兜转转。参考:http://wiki.apache.org/velocity/VelocityEditors
找到 https://github.com/vaulttec/veloedit
终于可以使用的veloedit。
Installation
Online updates are available from https://raw.githubusercontent.com/vaulttec/veloedit/updatesite/
. Define a site bookmark in Ec ...
确定分面字段。
参考文档:\ solr-5.2.1\example\files\README.txt 的内容在Ubuntu平台操作,
得到 solr-5.2.1/server/solr/files/conf/velocity 文件夹
复制到 core或collection中的conf文件夹中。
修改solrconfig.xml文件。配置velocity writer
修改参考:solr-5.2.1/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml
修改其中的 <requestHandler nam ...
[1、安装]
sudo apt-get install vsftpd
[2、配置FTP配置]
sudo gedit /etc/vsftpd.conf
取消如下配置前的注释符号:
local_enable=YES(是否允许本地用户登录)
write_enable=YES(是否允许本地用户写的权限)
chroot_local_user=YES(是否将所有用户限制在主目录)
chroot_list_enable=YES(是否启动限制用户的名单)
chroot_list_file=/etc/vsftpd.chroot_list(可在文件中设置多个账号)
设置认证模块:(这个没有弄明白)
pam_s ...
问题:引用Caused by: org.apache.solr.common.SolrException: Invalid UUID String: '1'
参考:https://issues.apache.org/jira/browse/SOLR-3398
当使用
<fieldType name="uuid" class="solr.UUIDField" indexed="true" />
<field name="id" type="uuid" indexed=&quo ...
问题:org.hibernate.PropertyNotFoundException: Could not find a setter for property id in class
我的原因是: hbm.xml中 少了access="field"如:
<property name="parentDpId" type="java.lang.String" access="field">
<column name=" ...