博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springmvc代码注意事项
阅读量:6687 次
发布时间:2019-06-25

本文共 5791 字,大约阅读时间需要 19 分钟。

hot3.png

1.页面传递来的参数的默认值。返回的参数也是转化为json形式

@RequestMapping("/item/cat/list")

    @ResponseBody
    public List<EasyUITreeNode> list(@RequestParam(value="id", defaultValue = "0") Long parentId) {
        List<EasyUITreeNode> itemCatList = itemCatService.getItemCatList(parentId);
        return itemCatList;
    }

2.

@RequestMapping("/{page}")

    public String showIndex(@PathVariable String page){
        return page;
    }

3.properties文件中定义的常量

@Value("${IMAGE_SERVER_URL}")

    private String IMAGE_SERVER_URL;

4.

//返回一个json,json中有一个error,url;error,message

    @RequestMapping(value="/pic/upload",produces=MediaType.TEXT_PLAIN_VALUE+";charset=utf-8")
    @ResponseBody
    public String picUpLoad(MultipartFile uploadFile){
        try {
            System.out.println("aaa");
            //接收页面上传的文件
            byte[] content = uploadFile.getBytes();
            //去文件的扩展名
            String filename = uploadFile.getOriginalFilename();
            String ext = filename.substring(filename.lastIndexOf(".")+1);
            //把文件内容上传到图片服务器
            FastDFSClient fastDFSClient = new FastDFSClient("classpath:resource/fast_dfs.conf");
            //从配置文件中取图片服务器的url
            String url = fastDFSClient.uploadFile(content, ext);
            //设置创建返回结果对象
            Map map = new HashMap();
            map.put("error", 0);
            map.put("url", IMAGE_SERVER_URL+url);
            //返回结果
            return JsonUtils.objectToJson(map);
        } catch (Exception e) {
            Map map = new HashMap();
            map.put("error", 1);
            map.put("message", "图片上传失败");
            return JsonUtils.objectToJson(map);
        }
    }

5.

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>添加业务受理单</title>
<!-- 导入jquery核心类库 -->
<script type="text/javascript"
    src="${pageContext.request.contextPath }/js/jquery-1.8.3.js"></script>
<!-- 导入easyui类库 -->
<link rel="stylesheet" type="text/css"
    href="${pageContext.request.contextPath }/js/easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css"
    href="${pageContext.request.contextPath }/js/easyui/themes/icon.css">
<link rel="stylesheet" type="text/css"
    href="${pageContext.request.contextPath }/js/easyui/ext/portal.css">
<link rel="stylesheet" type="text/css"
    href="${pageContext.request.contextPath }/css/default.css">
<script type="text/javascript"
    src="${pageContext.request.contextPath }/js/easyui/jquery.easyui.min.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath }/js/easyui/ext/jquery.portal.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath }/js/easyui/ext/jquery.cookie.js"></script>
<script
    src="${pageContext.request.contextPath }/js/easyui/locale/easyui-lang-zh_CN.js"
    type="text/javascript"></script>
<script type="text/javascript">
    $(function(){
        $("body").css({visibility:"visible"});
        
        // 对save按钮条件 点击事件
        $('#save').click(function(){
            // 对form 进行校验
            if($('#noticebillForm').form('validate')){
                $('#noticebillForm').submit();
            }
        });
    });
</script>
</head>
<body class="easyui-layout" style="visibility:hidden;">
    <div region="north" style="height:31px;overflow:hidden;" split="false"
        border="false">
        <div class="datagrid-toolbar">
            <a id="save" icon="icon-save" href="#" class="easyui-linkbutton"
                plain="true">新单</a>
            <a id="edit" icon="icon-edit" href="${pageContext.request.contextPath }/page_qupai_noticebill.action" class="easyui-linkbutton"
                plain="true">工单操作</a>    
        </div>
    </div>
    <div region="center" style="overflow:auto;padding:5px;" border="false">
        <form id="noticebillForm" action="${pageContext.request.contextPath }/noticebillAction_save.action" method="post">
            <table class="table-edit" width="95%" align="center">
                <tr class="title">
                    <td colspan="4">客户信息</td>
                </tr>
                <tr>
                    <td>来电号码:</td>
                    <script>
                        $(function(){
                            //为手机号输入框绑定离焦事件
                            $("input[name=telephone]").blur(function(){
                                //发送ajax请求,访问Action,在Action中调用crm项目根据手机号查询客户信息,在Action中将查询出的客户信息
                                //序列化为json数据返回页面
                                var telephone = this.value;
                                var url = "${pageContext.request.contextPath}/noticebillAction_findCustomerByPhone.action";
                                $.post(url,{"phone":telephone},function(data){
                                    if(data != null){
                                        //将客户的信息显示到当前页面上
                                        $("input[name=customerId]").val(data.id);
                                        $("input[name=customerName]").val(data.name);
                                        $("input[name=delegater]").val(data.name);
                                        $("input[name=pickaddress]").val(data.address);
                                    }else{
                                        $("input[name=customerId]").val("");
                                        $("input[name=customerName]").val("");
                                        $("input[name=delegater]").val("");
                                        $("input[name=pickaddress]").val("");
                                    }
                                });
                            });
                        });
                    </script>
                    <td><input type="text" class="easyui-validatebox" name="telephone"
                        required="true" /></td>
                    <td>客户编号:</td>
                    <td><input type="text" class="easyui-validatebox"  name="customerId"
                        required="true" /></td>
                </tr>
                <tr>
                    <td>客户姓名:</td>
                    <td><input type="text" class="easyui-validatebox" name="customerName"
                        required="true" /></td>
                    <td>联系人:</td>
                    <td><input type="text" class="easyui-validatebox" name="delegater"
                        required="true" /></td>
                </tr>
                <tr class="title">
                    <td colspan="4">货物信息</td>
                </tr>
                <tr>
                    <td>品名:</td>
                    <td><input type="text" class="easyui-validatebox" name="product"
                         /></td>
                    <td>件数:</td>
                    <td><input type="text" class="easyui-numberbox" name="num"
                         /></td>
                </tr>
                <tr>
                    <td>重量:</td>
                    <td><input type="text" class="easyui-numberbox" name="weight"
                         /></td>
                    <td>体积:</td>
                    <td><input type="text" class="easyui-validatebox" name="volume"
                         /></td>
                </tr>
                <tr>
                    <td>取件地址</td>
                    <td colspan="3"><input type="text" class="easyui-validatebox" name="pickaddress"
                        required="true" size="144"/></td>
                </tr>
                <tr>
                    <td>到达城市:</td>
                    <td><input type="text" class="easyui-validatebox" name="arrivecity"
                         /></td>
                    <td>预约取件时间:</td>
                    <td><input type="text" class="easyui-datebox" name="pickdate"
                        data-options="editable:false" /></td>
                </tr>
                <tr>
                    <td>备注:</td>
                    <td colspan="3"><textarea rows="5" cols="80" type="text" class="easyui-validatebox" name="remark"
                        ></textarea></td>
                </tr>
            </table>
        </form>
    </div>
</body>
</html>

转载于:https://my.oschina.net/u/3045515/blog/789972

你可能感兴趣的文章
redis 系列9 对象类型(字符串,哈希,列表,集合,有序集合)与数据结构关系
查看>>
在另一个类中做数据成员的对象,可以先不初始化
查看>>
最终类final
查看>>
Springboot开启事务
查看>>
广搜——三维迷宫
查看>>
安装OpenCV3.1 与VS2015配置主要步骤
查看>>
mian函数接受两个实参,&nbsp;连成s…
查看>>
mssql timeout 超时时间已到
查看>>
LVS负载均衡
查看>>
[研究笔记]n个骰子得到点数和的概率分布
查看>>
一起谈.NET技术,Sharepoint 究竟能为客户做些什么
查看>>
解决ftp登录问题:500 OOPS: cannot change directory:/home/xxx 500 OOPS: child died
查看>>
使用IEDScout校验61850出错记录及解决方案
查看>>
AD在更新PCB的时候,每次封装都会改变位置?
查看>>
Delphi启动外部程序
查看>>
python操作mysql总结
查看>>
JavaScript学习-自定义对象属性迭代器
查看>>
查看java源码显示source not found
查看>>
Linux常用经典命令
查看>>
命令行参数及全局替换程序
查看>>