为了账号安全,请及时绑定邮箱和手机立即绑定

springmvc接收POST请求与get写法

标签:
Java

java:代码

package cn.app;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;/** *  控制器 * @author AdminTC */@Controller@RequestMapping(value="/user")public class UserAction {    /**     * 用户注册,只能接收POST请求     */    @RequestMapping(method=RequestMethod.POST,value="/register")    public String registerMethod(Model model,String username,String salary) throws Exception{        System.out.println("用户注册-->" + username + ":" + salary);        model.addAttribute("message","员工注册成功");        return "success";    }    /**     * 用户登录 即能接收POST请求,又能接收GET请求     */    @RequestMapping(value="/login")    public String loginMethod(Model model,String username,String password) throws Exception{        System.out.println("用户注册-->" + username + ":" + password);        model.addAttribute("message","员工登录成功");        return "success";    }}

spring.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:mvc="http://www.springframework.org/schema/mvc"      xsi:schemaLocation="      http://www.springframework.org/schema/beans       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd      http://www.springframework.org/schema/mvc      http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd      ">      <!-- import resource="cn/itcast/emp/config/spring-emp.xml"/ -->      <!-- 做注解版使用 -->      <import resource="cn/app/spring-app.xml"/></beans>

目录下的spring0.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:mvc="http://www.springframework.org/schema/mvc"      xmlns:context="http://www.springframework.org/schema/context"      xsi:schemaLocation="      http://www.springframework.org/schema/beans       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd      http://www.springframework.org/schema/mvc      http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd      http://www.springframework.org/schema/context      http://www.springframework.org/schema/context/spring-context-3.0.xsd      ">    <!-- Action,让springioc容器去扫描带@Controller的类 -->    <context:component-scan base-package="cn.app"/>        <!-- 映射器(省)     <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">    </bean>    -->        <!-- 视图解析器 -->    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">        <property name="prefix" value="/jsp/"/>        <property name="suffix" value=".jsp"/>    </bean></beans>

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消