Ajax请求SpringMVC
@RequestMapping(value = "/loadMenu", method = RequestMethod.GET) @ResponseBody public ArrayList<TreeNode> loadMenu(@RequestParam(value = "node") String nodeId) throws Exception { ArrayList<TreeNode> nodes = new ArrayList<TreeNode>(); if (TreeNode.ROOT.equals(nodeId)) { TreeNode node = new TreeNode(); node.setObjectId("12345"); node.setText("root"); node.setLeaf(false); nodes.add(node); } else { TreeNode node = new TreeNode(); node.setObjectId("23456"); node.setText("1"); node.setLeaf(true); nodes.add(node); } return nodes; }
<?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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:annotation-config /> <context:component-scan base-package="com" /> <bean id="json" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" /> <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="messageConverters"> <list> <ref bean="json" /> </list> </property> </bean> </beans>
jar : jackson-core-asl-1.9.13.jar ; jackson-mapper-asl-1.9.13.jar 1.9.0 包太旧会报找不到class的错
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步