SpringBoot最佳整合ueditor的解决方案

Spring Boot整合ueditor教程,不需要更改源码,支持,html或者是集成了jsp两种方式
一、使用springboot集成jsp方式
1、下载jsp版本的ueditor
自行下载相应的版本
2、搭建springboot工程,集成jsp
(1)、新建项目
新建项目,使用ij idea编辑器
(2)、添加springboot支持
新建springboot项目
这里写图片描述
这里写图片描述
新建webApp文件
添加web支持,使用webApp文件夹
新建相对应的文件
(3)、修改pom.xml文件

<properties>
							<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
							<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
							<java.version>1.8</java.version>
						</properties>
					
			<dependencies>
				<dependency>
					<groupId>org.springframework.boot</groupId>
					<artifactId>spring-boot-starter</artifactId>
				</dependency>
				<!--web -->
				<dependency>
					<groupId>org.springframework.boot</groupId>
					<artifactId>spring-boot-starter-web</artifactId>
				</dependency>
				<dependency>
					<groupId>org.springframework.boot</groupId>
					<artifactId>spring-boot-starter-tomcat</artifactId>
					<!--  <scope>provided</scope>-->
				</dependency>
				<dependency>
					<groupId>org.apache.tomcat.embed</groupId>
					<artifactId>tomcat-embed-jasper</artifactId>
					<!-- <scope>provided</scope>-->
				</dependency>
			</dependencies>
		
			<build>
				<plugins>
					<plugin>
						<groupId>org.springframework.boot</groupId>
						<artifactId>spring-boot-maven-plugin</artifactId>
					</plugin>
				</plugins>
			</build>
	(4)、等待jar包导入完成之后,为了方便,直接在入口main函数中加一个方法进行测试是否能支持jsp
public static void main(String[] args) {
				SpringApplication.run(DemoApplication.class, args);
			}
		
			@RequestMapping("/index")
			public String index(){
				return "index";
			}
		![加入测试](https://img-blog.csdn.net/2018080911314697?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3hsanhfMQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70)
		(5)、加入yml配置文件,看个人习惯使用哪种配置方式
			spring:
			  profiles:
			    active: dev
			  mvc:
			      view:
			       prefix : /WEB-INF/views/
			       suffix : .jsp
			server:
			  port: 8080
		 (6)、启动项目,运行localhost:8080
		 ![springboot整合jsp完成](https://img-blog.csdn.net/20180809113353653?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3hsanhfMQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70)
3、把下载的jsp版本的ueditor放在相对应的文件下,把lib下的jar加载到lib下,

此时需要替换原来的ueditor的jar下面有下载地址

![复制相对应的文件夹](https://img-blog.csdn.net/20180809113836656?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3hsanhfMQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70)
4、新建一个控制器类
import org.springframework.stereotype.Controller;
	import org.springframework.web.bind.annotation.RequestMapping;
	import org.springframework.web.multipart.MultipartFile;
	
	import javax.servlet.http.HttpServletRequest;
	
	/**
	 * Created by chenfeilong on 2017/10/18.
	 */
	@Controller
	@RequestMapping("ueditor")
	public class UeditorController {
	    @RequestMapping("core")
	    public String core(MultipartFile file, HttpServletRequest request,String action){
	        return "ueditor/jsp/controller";
	    }
	
	    /**
	     * 替换原始的ue的controller.jsp
	     * @param response
	     * @param request
	     * @throws Exception
	
	    @RequestMapping("core")
	    public void core(HttpServletResponse response, HttpServletRequest request) throws Exception {
	        PrintWriter out = response.getWriter();
	        request.setCharacterEncoding( "utf-8" );
	        response.setHeader("Content-Type" , "text/html");
	        String rootPath = request.getSession().getServletContext().getRealPath( "/" );
	        out.write( new ActionEnter( request, rootPath ).exec() );
	    }*/
	}
5、运行http://localhost:8080/ueditor/index.html
![这里写图片描述](https://img-blog.csdn.net/2018080911395797?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3hsanhfMQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70)

6、点击图片上传
这里写图片描述
7、开始上传
这里写图片描述
8、自己新建的UeditorController,有两种方式,第一种是用原来的controller.jsp,或者是舍弃jsp
还需要修改相对应的参数,我这里提供原版的文件下载,可以根据自身的要求改

链接:https://pan.baidu.com/s/18pSdSQx2j7sIA7znMq7aSQ 密码:jtj2

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值