SpringFramework手动注册RequestMapping API
【摘要】 SpringFramework手动注册RequestMapping API接口
业务场景:最近遇到一个特殊需求,需要手动注册RequestMapping ,使用SpringFramework项目里的RequestMappingInfoHandlerMapping进行手动注册
package portal.configure;
import org.springfr...
SpringFramework手动注册RequestMapping API接口
业务场景:最近遇到一个特殊需求,需要手动注册RequestMapping ,使用SpringFramework项目里的RequestMappingInfoHandlerMapping进行手动注册
package portal.configure;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.http.HttpStatus;
import org.springframework.social.connect.web.HttpSessionSessionStrategy;
import org.springframework.social.connect.web.SessionStrategy;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.context.request.ServletWebRequest;
import org.springframework.web.filter.OncePerRequestFilter;
import org.springframework.web.servlet.mvc.method.RequestMappingInfo;
import org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping;
import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
@Configuration
@ConditionalOnExpression("${auth.isEnable : false}")
public class RequestMappingConfiguration { private SessionStrategy sessionStrategy = new HttpSessionSessionStrategy(); @Autowired public void setRequestMapping(RequestMappingInfoHandlerMapping mapping) throws NoSuchMethodException { mapping.registerMapping(RequestMappingInfo .paths("/api/test").methods(RequestMethod.GET).build(), this, this.getClass().getMethod("reqMethod", HttpServletRequest.class, HttpServletResponse.class)); } public void reqMethod(HttpServletRequest request, HttpServletResponse response) throws Exception { sessionStrategy.setAttribute(new ServletWebRequest(request), "userCode", "admin"); response.setStatus(HttpStatus.OK.value()); response.setCharacterEncoding("utf-8"); response.setContentType ( "application/json; charset=utf-8"); PrintWriter printWriter = response.getWriter(); printWriter.write("{ \"status\":"+HttpStatus.OK.value()+", \"desc\":\""+ "api接口调用成功!" +"\"}"); printWriter.flush(); } @Bean @Primary public FilterRegistrationBean myFilterRegistration() { FilterRegistrationBean registration = new FilterRegistrationBean(); registration.setFilter(new OncePerRequestFilter() { @Override protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException { String origin = request.getHeader("origin"); if (StringUtils.isEmpty(origin)) { origin = "*"; } response.setHeader("Access-Control-Allow-Origin", origin); response.setHeader("Access-Control-Allow-Credentials", "true"); filterChain.doFilter(request, response); } }); registration.addUrlPatterns("/api"); return registration; }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
linux环境测试api接口
[www@localhost ~]$ curl http://127.0.0.1:8080/api/test
{ "status":200, "desc":"api接口调用成功!"}
- 1
- 2
文章来源: smilenicky.blog.csdn.net,作者:smileNicky,版权归原作者所有,如需转载,请联系作者。
原文链接:smilenicky.blog.csdn.net/article/details/118611285
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)