博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java之spring mvc之ajax
阅读量:5038 次
发布时间:2019-06-12

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

1.可以使用servletAPI来实现 ajax

Controller 类

@Controllerpublic class AjaxController {    @RequestMapping("/ajax.do")    public String ajax(HttpServletResponse resp) throws IOException{        resp.getWriter().print("ajax hello");        return null;    }}

Jsp

2. 使用 springmvc 提供的组件来实现 ajax

导入 jackson 的相关包:

 

Controller 处理

@RequestMapping("/json.do")    @ResponseBody//将返回内容插入页面中    public List
list(){ List
list = new ArrayList
(); list.add(new User(1,"张三",22)); list.add(new User(2,"李四",32)); return list; }

配置文件

text/plain;charset=UTF-8

Jsp 页面

编号 姓名 年龄

配置优化 

 github地址:

转载于:https://www.cnblogs.com/Vincent-yuan/p/11279971.html

你可能感兴趣的文章
C++的引用
查看>>
python itertools
查看>>
http://lorempixel.com/ 可以快速产生假图
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
CF717A Festival Organization(第一类斯特林数,斐波那契数列)
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
Oracle composite index column ordering
查看>>
kaggle竞赛
查看>>
区块链入门教程
查看>>
npm常用命令
查看>>