Struts2 json plugin实战3 - JSON RPC

本文介绍如何在 Struts2 框架中使用 JSON 插件实现前后端数据交互。通过创建 Action 类和 User 实体类,并配置 Spring 和 Struts2,最终在 JSP 页面上展示从服务器获取的 JSON 数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. 首先是在struts2的工程里添加struts2-json-plugin.xxx.jar库,如果是使用的maven,添加以下dependency

<dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-json-plugin</artifactId> <version>2.1.8.1</version> </dependency>

2. 创建Action类和一个用到的User类

Action类内容

import com.opensymphony.xwork2.Action; import java.util.ArrayList; import java.util.List; import org.apache.struts2.json.annotations.SMDMethod; public class JSONExample3 { private List<User> userList = new ArrayList<User>(); public String execute() { return Action.SUCCESS; } @SMDMethod public List<User> getMyUserList(int size) { for (int i = 0; i < size; i++) { User user = new User("id_" + i, "username_" + i, "password_" + i, "desc_" + i); userList.add(user); } return userList; } public List<User> getUserList() { return userList; } public void setUserList(List<User> userList) { this.userList = userList; } }

User类内容

import java.io.Serializable; public class User implements Serializable { private static final long serialVersionUID = 1L; private String id; private String username; private String password; private String description; public User() { } public User(String id, String username, String password, String description) { this.id = id; this.username = username; this.password = password; this.description = description; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }

3. Spring配置文件

<?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:aop="http://www.springframework.org/schema/aop" xmlns:lang="http://www.springframework.org/schema/lang" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd" default-lazy-init="true"> <bean id="jsonExample3" class="JSONExample3" scope="prototype"/> </beans>

4. Struts2配置文件

<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <include file="struts-default.xml" /> <package name="json" namespace="/json" extends="struts-default" > <result-types> <result-type name="json" class="org.apache.struts2.json.JSONResult"/> </result-types> <interceptors> <interceptor name="json" class="org.apache.struts2.json.JSONInterceptor"/> </interceptors> <action name="smdAction" class="jsonExample3"> <interceptor-ref name="json"> <param name="enableSMD">true</param> </interceptor-ref> <result type="json"> <param name="enableSMD">true</param> </result> </action> </package> </struts>

5. 新建一个jsp文件json.jsp用来做测试

<html> <head> <title></title> <mce:script type="text/javascript" src="http://www.google.com/jsapi?key=helloworld" mce_src="http://www.google.com/jsapi?key=helloworld"></mce:script> <mce:script type="text/javascript"><!-- google.load("jquery", "1.4.1"); google.load("dojo", "1.1"); function testSmdAction() { //create service object(proxy) using SMD (generated by the json result) var service = new dojo.rpc.JsonService("/json/smdAction.action"); //execute remote method var defered = service.getMyUserList(10); //attach callback to defered object defered.addCallback(function(data) { var s = ""; for (var idx = 0; idx < data.length; idx++) { s += "user["+idx+"].id=" + data[idx].id + "/n"; } alert(s); }); } function init() { dojo.require("dojo.io.script"); dojo.require("dojo.rpc.JsonService"); } // --></mce:script> </head> <body style="margin: 20px;" mce_style="margin: 20px;" onload="init();"> <h3>json test</h3> <ul> <li><a href="#" mce_href="#" onclick="testSmdAction()">SMD Action</a></li> </ul> </body> </html>

6. 启动web容器测试,可以使用Tomcat或者maven自带的jetty,然后访问

http://localhost:8080/json/json.jsp

此时可以点击页面上的链接来测试结果。

参考:https://cwiki.apache.org/confluence/display/WW/JSON%20Plugin

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值