作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个网络应用程序 http://localhost:8080/TestWeb/.我想在我的 spring mvc Controller 中获取 url 和数据例如
http://tech.bg7.com/college/home.html?sn=S1&token=01535141444B88
我的 Spring Controller 示例
@RequestMapping(value = "/login", method = RequestMethod.POST)
public String login(@ModelAttribute("login") Users usr,
BindingResult result, Model model, HttpSession session,
HttpServletRequest request) {
//business logic
return "login";
}
调度程序-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd">
<context:component-scan base-package="com.tech.testWeb.*" />
<mvc:annotation-driven />
<mvc:resources mapping="/resources/**" location="/resources/*"
cache-period="31556926"/>
<import resource="classpath:springmvc-resteasy.xml"/>
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/views/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
如何从 tes.bg7.com 服务器获取请求 url 到 spring mvc Controller 中?
提前致谢
最佳答案
使用@RequestParam从url中获取数据。尝试下面的代码。
@RequestMapping(value = "/login", method = RequestMethod.POST)
public String login(@RequestParam("sn")String sn,@RequestParam("token")Integer token)
{
//business logic
}
关于java - 如何从另一台服务器获取请求url到spring mvc Controller 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38181442/
我是一名优秀的程序员,十分优秀!