博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Activiti使用maven alfresco仓库问题处理
阅读量:5879 次
发布时间:2019-06-19

本文共 1381 字,大约阅读时间需要 4 分钟。

hot3.png

环境

项目用到了Activiti工作流引擎。 项目使用maven进行依赖管理。

遇到问题

项目使用的activiti版本是5.13,但是maven中央库中是从5.14开始的。 从网上找到https://maven.alfresco.com/nexus/content/groups/public/这个仓库包含5.13版本。 但是配置完该仓库,使用maven从里面下载的时候出现了异常。java.lang.RuntimeException: Could not generate DH keypair

搜索解决方案

从网上搜,找到了:还有

解决方法

下面内容摘自上述第二个搜索结果:

Solution: The problem is “Prime size must be multiple of 64, and can only range from 512 to 1024″. The maximum-acceptable size that Java accepts is 1024 bits, this is a known issue . I tried using the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files, that did not work. The bug report mentioned using BouncyCastle’s JCE implementation to get around this problem.

  1. Download the BouncyCastle JCE jars. These particular links are for version 1.52 and work for Oracle Java 5 – Java 8. OR:
  1. Copy jars to $JAVA_HOME/jre/lib/ext
  2. Edit $JAVA_HOME/jre/lib/security/java.security as follows: a. Locate the “security.provider” section. Keep security.provider.1=sun.security.provider.Sun b. Locate “security.provider.2″ and make that “security.provider.3″. Do this for all the remaining “security.provider.n” values. c. Set “security.provider.2″ to org.bouncycastle.jce.provider.BouncyCastleProvider security.provider.2=org.bouncycastle.jce.provider.BouncyCastleProvider
  1. Re-run the maven build and the errors should now be gone.

转载于:https://my.oschina.net/huanger/blog/484381

你可能感兴趣的文章
iOS开发月报#2|201808
查看>>
SMSSDK进化之路
查看>>
【干货来袭】使用 Python 扩展 UiBot 的功能
查看>>
node之搭建一个http完整的静态服务器(命令行工具)
查看>>
阿里云IPv6 DDoS防御被工信部认定为“网络安全技术应用试点示范项目
查看>>
史上最快Docker入门实战! (二) - Docker环境的搭建方法
查看>>
【思维导图】PHP基础
查看>>
小程序使用之自定义组件
查看>>
Java springcloud B2B2C o2o多用户商城 springcloud架构(四):熔断器Hystrix
查看>>
spring cloud微服务分布式云架构-服务消费者Feign
查看>>
Lua Windows环境搭建以及配置netbeans IDE Glider插件For Lua
查看>>
TypeScript系列1-简介及版本新特性
查看>>
Microsoft Speech Platform
查看>>
jQuery和JavaScript获取父级以上元素的写法
查看>>
我的友情链接
查看>>
SlidesJS基本使用方法_已整理
查看>>
10g数据导入9i数据库方法实现
查看>>
jquery时间轴特效例子搜集下载
查看>>
我的友情链接
查看>>
解决MySQL远程登录时出现ERROR 1130错误问题
查看>>