高高砖头

文章
4
资源
0
加入时间
2年10月17天

Error creating bean with name 'serverEndpointExporter' defined in class path

出现这个错的原因是在部署项目的时候,项目中含有websocket的@ServerEndpoint注解的时候,如果项目是springboot项目,去除内置tomcat的时候会把websocket的包也给删除掉,所以需要手动加上.加上这个包,然后再打war包,部署到linux的tomcat下就没问题了. <!--去除内嵌tomcat--> <de...

HandlerInterceptorAdapter实现简单拦截

以下是本人开发中使用的简单实现,望各位大神提出见解及改进方法,也写此博客记录一、继承org.springframework.web.servlet.handler.HandlerInterceptorAdapter类package com.rzxt.test.common.auth;import com.fasterxml.jackson.databind.ObjectMa