maven 管理ueditor百度编辑器的jar包出错,出错信息如下:
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 管理ueditor百度编辑器的jar包出错,出错信息如下:相关的知识,希望对你有一定的参考价值。
maven 中央仓库并没有提供ueditor jar包的依赖,我使用的是system 的方式引入的:
<dependency>
<groupId>com.baidu.ueditor</groupId>
<artifactId>ueditor</artifactId>
<version>1.1.1</version>
<scope>system</scope>
<systemPath>$basedir/src/main/webapp/WEB-INF/lib/ueditor-1.1.1.jar</systemPath>
</dependency>
可是我的pom.xml文件却报这样的错误:
Missing artifact com.baidu.ueditor:ueditor:jar:1.1.1:system
各位亲们快帮我看看啊!!非常捉急!!!
毕业设计----maven使用ueditor编辑器
一、使用maven命令导入jar包
1、 下载ueditorb压缩包,并解压
2、 在ueditor/jsp/lib目录下打开maven命令窗口[shift + 单击右键后选择打开命令窗口]
输入以下命令
mvn install:install-file -Dfile=ueditor-1.1.2.jar -Dpackaging=jar -DgroupId=com.baidu.ueditor -DartifactId=ueditor -Dversion=1.1.2
3、 在pom.xml中添加配置(两种方式生成的jar包路径不一样,所以groupId不一样)
<!-- 添加Ueditor依赖 --> <dependency> <groupId>com.baidu.ueditor</groupId> <artifactId>ueditor</artifactId> <version>1.1.2</version> </dependency>
二、在jsp页面添加js文件
config.js与all.js顺序不能错,否则会加载不出来
<!-- 配置文件 --> <script type="text/javascript" src="UEditor/ueditor.config.js"></script> <!-- 编辑器源码文件 --> <script type="text/javascript" src="UEditor/ueditor.all.js"></script> <link rel="stylesheet" href="UEditor/themes/default/css/ueditor.css"> <script type="text/javascript" src="UEditor/lang/zh-cn/zh-cn.js"></script>
三、JSP页面应用ueditor
<textarea id="container" name="content"></textarea> <script type="text/javascript"> $(function(){ UE.getEditor("container"); }) </script>
基本步骤就这些,还需要导入json包,直接在去中央仓库找dependency就可以。
以上是关于maven 管理ueditor百度编辑器的jar包出错,出错信息如下:的主要内容,如果未能解决你的问题,请参考以下文章
dedecmsV5.7 百度编辑器ueditor 多图上传 在线管理 排序问题