小编san*_*san的帖子

无法找到请求目标的有效认证路径

我正在使用restTemplate发出发布请求,但收到以下错误:无法找到请求目标的有效证书路径

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transformToListClass': Invocation of init method failed; nested exception is java.lang.RuntimeException: org.springframework.web.client.ResourceAccessException: I/O error on POST request for "https://emploenefitsdev/rion/v1/rion/": sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target; nested exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Caused by: java.lang.RuntimeException: org.springframework.web.client.ResourceAccessException: I/O error on POST request for "https://emploenefitsdev/rion/v1/rion/": sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid …
Run Code Online (Sandbox Code Playgroud)

java validation spring resttemplate spring-boot

10
推荐指数
1
解决办法
14万
查看次数

为什么这个 HashSet 在打印时看起来是排序的?

Set<Integer> s = new HashSet<Integer>();
s.add(77);
s.add(0);
s.add(1);
 
System.out.println(s);
 
TreeSet<Integer> s1 = new TreeSet<Integer>();
s1.add(77);
s1.add(0);
s1.add(1);
 
System.out.println(s1);
Run Code Online (Sandbox Code Playgroud)

输出:

s = [0, 1, 77]
s1= [0, 1, 77]
Run Code Online (Sandbox Code Playgroud)

根据教程点页面上的定义

Set 是一组没有重复元素的通用值。TreeSet 是对元素进行排序的集合。

为什么输出都ss1排序?我期望只对s1's 输出进​​行排序。

java collections hashset

6
推荐指数
2
解决办法
143
查看次数

“KMeans”对象没有属性“cluster_centers_”

我正在使用 Jupyter 笔记本,并且编写了以下代码:

from sklearn.datasets import make_blobs
dataset = make_blobs(n_samples=200, centers = 4,n_features = 2, cluster_std = 1.6, random_state = 50)
points = dataset[0];
from sklearn.cluster import KMeans
kmeans = KMeans(n_clusters = 4)
kmeans.fit(points)
plt.scatter(dataset[0][:,0],dataset[0][:,1])
clusters = kmeans.cluster_centers_
Run Code Online (Sandbox Code Playgroud)

// 下面的行给出错误: 'KMeans' 对象没有属性 'cluster_centers_'

clusters = kmeans.cluster_centers_
Run Code Online (Sandbox Code Playgroud)

我期望它显示点的平均值或平均值。

python k-means

3
推荐指数
1
解决办法
9878
查看次数

如何解决错误“元组”对象不可调用

我是 python 的新手,我已经将一个文件导入 jupyter,如下所示:

df = pd.read_csv(r"C:\Users\shalotte1\Documents\EBQS_INTEGRATEDQUOTEDOCUMENT\groceries.csv")
Run Code Online (Sandbox Code Playgroud)

我正在使用以下代码来确定数据中的行数和列数

df.shape()
Run Code Online (Sandbox Code Playgroud)

但是我收到以下错误:

TypeError: 'tuple' object is not callable
Run Code Online (Sandbox Code Playgroud)

python jupyter-notebook

1
推荐指数
1
解决办法
516
查看次数

为什么有极限的流是无限的?

我在 Eclipse 中运行了以下代码:

Stream.generate(() -> "Elsa")
      .filter(n -> n.length() ==4)
      .sorted()
      .limit(2)
      .forEach(System.out::println);
Run Code Online (Sandbox Code Playgroud)

输出是:

线程“main”中的异常 java.lang.OutOfMemoryError: Java heap space

由于限制是两个,我期待的是:

Elsa
Elsa
Run Code Online (Sandbox Code Playgroud)

有人可以解释为什么这是一个无限流吗?

java java-stream

-2
推荐指数
1
解决办法
53
查看次数