springmvc注解小示例(转)

转自:http://www.blogjava.net/pengo/archive/2010/11/28/339229.html

弃用了struts,用spring mvc框架做了几个项目,感觉都不错,而且使用了注解方式,可以省掉一大堆配置文件。本文主要介绍使用注解方式配置的spring mvc,之前写的spring3.0 mvc和rest小例子没有介绍到数据层的内容,现在这一篇补上。下面开始贴代码。

文中用的框架版本:spring 3,hibernate 3,没有的,自己上网下。

web.xml配置:

<?xml version="1.0" encoding="UTF-8"?>   
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">   
  <display-name>s3h3</display-name>   
   <context-param>     
     <param-name>contextConfigLocation</param-name>     
     <param-value>classpath:applicationContext*.xml</param-value>     
 </context-param>     
  <listener>     
     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>     
 </listener>     
  
 <servlet>     
     <servlet-name>spring</servlet-name>     
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>     
     <load-on-startup>1</load-on-startup>     
 </servlet>     
 <servlet-mapping>     
     <servlet-name>spring</servlet-name>  <!-- 这里在配成spring,下边也要写一个名为spring-servlet.xml的文件,主要用来配置它的controller -->   
     <url-pattern>*.do</url-pattern>     
 </servlet-mapping>     
  <welcome-file-list>   
    <welcome-file>index.jsp</welcome-file>   
  </welcome-file-list>   
</web-app>  

 

spring-servlet,主要配置controller的信息

<?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:p="http://www.springframework.org/schema/p"
        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/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd   
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd   
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">   
     
  <context:annotation-config />   
       <!--把标记了@Controller注解的类转换为bean -->     
      <context:component-scan base-package="com.mvc.controller"/>     
  <!--启动Spring MVC的注解功能,完成请求和注解POJO的映射 -->     
      <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>     
        
       <!--对模型视图名称的解析,即在模型视图名称添加前后缀 -->     
       <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/WEB-INF/view/"p:suffix=".jsp"/>     
           
       <bean id="multipartResolver"
          class="org.springframework.web.multipart.commons.CommonsMultipartResolver"
          p:defaultEncoding="utf-8"/>     
 </beans>  

 

applicationContext.xml代码

<?xml version="1.0" encoding="UTF-8"?>   
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:aop="http://www.springframework.org/schema/aop"xmlns:context="http://www.springframework.org/schema/context"
 xmlns:p="http://www.springframework.org/schema/p"xmlns:tx="http://www.springframework.org/schema/tx"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 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   
   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd   
   http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">   
  
 <context:annotation-config />   
 <context:component-scan base-package="com.mvc"/>  <!--自动扫描所有注解该路径 -->   
  
 <context:property-placeholder location="classpath:/hibernate.properties"/>   
  
 <bean id="sessionFactory"
  class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">   
  <property name="dataSource"ref="dataSource"/>   
  <property name="hibernateProperties">   
   <props>   
    <prop key="hibernate.dialect">${dataSource.dialect}</prop>   
    <prop key="hibernate.hbm2ddl.auto">${dataSource.hbm2ddl.auto}</prop>   
    <prop key="hibernate.hbm2ddl.auto">update</prop>   
   </props>   
  </property>   
  <property name="packagesToScan">   
   <list>   
    <value>com.mvc.entity</value><!--扫描实体类,也就是平时所说的model -->   
   </list>   
    </property>   
 </bean>   
  
 <bean id="transactionManager"
  class="org.springframework.orm.hibernate3.HibernateTransactionManager">   
  <property name="sessionFactory"ref="sessionFactory"/>   
  <property name="dataSource"ref="dataSource"/>   
 </bean>   
  
 <bean id="dataSource"
  class="org.springframework.jdbc.datasource.DriverManagerDataSource">   
  <property name="driverClassName"value="${dataSource.driverClassName}"/>   
  <property name="url"value="${dataSource.url}"/>   
  <property name="username"value="${dataSource.username}"/>   
  <property name="password"value="${dataSource.password}"/>   
 </bean>   
 <!--Dao的实现 -->   
 <bean id="entityDao"class="com.mvc.dao.EntityDaoImpl">     
  <property name="sessionFactory"ref="sessionFactory"/>   
 </bean>   
 <tx:annotation-driven transaction-manager="transactionManager"/>   
 <tx:annotation-driven mode="aspectj"/>   
     
    <aop:aspectj-autoproxy/>     
</beans>  

 

hibernate.properties数据库连接配置

dataSource.password=123  
dataSource.username=root   
dataSource.databaseName=test   
dataSource.driverClassName=com.mysql.jdbc.Driver   
dataSource.dialect=org.hibernate.dialect.MySQL5Dialect   
dataSource.serverName=localhost:3306  
dataSource.url=jdbc:mysql://localhost:3306/test   
dataSource.properties=user=${dataSource.username};databaseName=${dataSource.databaseName};serverName=${dataSource.serverName};password=${dataSource.password}   
dataSource.hbm2ddl.auto=update  

 

配置已经完成,下面开始例子
先在数据库建表,例子用的是mysql数据库

CREATE TABLE  `test`.`student` (   
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,   
  `name` varchar(45) NOT NULL,   
  `psw` varchar(45) NOT NULL,   
  PRIMARY KEY (`id`)   
)  

 

建好表后,生成实体类

package com.mvc.entity;   
  
import java.io.Serializable;   
  
import javax.persistence.Basic;   
import javax.persistence.Column;   
import javax.persistence.Entity;   
import javax.persistence.GeneratedValue;   
import javax.persistence.GenerationType;   
import javax.persistence.Id;   
import javax.persistence.Table;   
  
@Entity  
@Table(name = "student")   
public class Student implements Serializable {   
    private static final long serialVersionUID = 1L;   
    @Id  
    @Basic(optional = false)   
    @GeneratedValue(strategy = GenerationType.IDENTITY)   
    @Column(name = "id", nullable = false)   
    private Integer id;   
    @Column(name = "name")   
    private String user;   
    @Column(name = "psw")   
    private String psw;   
    public Integer getId() {   
        return id;   
    }   
    public void setId(Integer id) {   
        this.id = id;   
    }   
       
    public String getUser() {   
        return user;   
    }   
    public void setUser(String user) {   
        this.user = user;   
    }   
    public String getPsw() {   
        return psw;   
    }   
    public void setPsw(String psw) {   
        this.psw = psw;   
    }   
}  


Dao层实现

package com.mvc.dao;   
  
import java.util.List;   
  
public interface EntityDao {   
    public List<Object> createQuery(final String queryString);   
    public Object save(final Object model);   
    public void update(final Object model);   
    public void delete(final Object model);   
}
  

 

package com.mvc.dao;   
  
import java.util.List;   
  
import org.hibernate.Query;   
import org.springframework.orm.hibernate3.HibernateCallback;   
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;   
  
public class EntityDaoImpl extends HibernateDaoSupport implements EntityDao{   
    public List<Object> createQuery(final String queryString) {   
        return (List<Object>) getHibernateTemplate().execute(   
                new HibernateCallback<Object>() {   
                    public Object doInHibernate(org.hibernate.Session session)   
                            throws org.hibernate.HibernateException {   
                        Query query = session.createQuery(queryString);   
                        List<Object> rows = query.list();   
                        return rows;   
                    }
   
                }
);   
    }
   
    public Object save(final Object model) {   
        return  getHibernateTemplate().execute(   
                new HibernateCallback<Object>() {   
                    public Object doInHibernate(org.hibernate.Session session)   
                            throws org.hibernate.HibernateException {   
                        session.save(model);   
                        return null;   
                    }
   
                }
);   
    }
   
    public void update(final Object model) {   
        getHibernateTemplate().execute(new HibernateCallback<Object>() {   
            public Object doInHibernate(org.hibernate.Session session)   
                    throws org.hibernate.HibernateException {   
                session.update(model);   
                return null;   
            }
   
        }
);   
    }
   
    public void delete(final Object model) {   
        getHibernateTemplate().execute(new HibernateCallback<Object>() {   
            public Object doInHibernate(org.hibernate.Session session)   
                    throws org.hibernate.HibernateException {   
                session.delete(model);   
                return null;   
            }
   
        }
);   
    }
   
}
  


Dao在applicationContext.xml注入

<bean id="entityDao"class="com.mvc.dao.EntityDaoImpl">  
  <property name="sessionFactory"ref="sessionFactory"/>
 </bean>

 

Dao只有一个类的实现,直接供其它service层调用,如果你想更换为其它的Dao实现,也只需修改这里的配置就行了。
开始写view页面,WEB-INF/view下新建页面student.jsp,WEB-INF/view这路径是在spring-servlet.xml文件配置的,你可以配置成其它,也可以多个路径。student.jsp代码

<%@ page language="java" contentType="text/html; charset=UTF-8"  
    pageEncoding="UTF-8"
%>  
<%@ include file="/include/head.jsp"%>  
<!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>  
<script language="javascript"src="<%=request.getContextPath()%><!--   
/script/jquery.min.js">  
// --></script>  
<style><!--   
table{  border-collapse:collapse;  }   
td{  border:1px solid #f00;  }   
--></style><style mce_bogus="1">table{  border-collapse:collapse;  }   
td{  border:1px solid #f00;  }</style>  
<script type="text/javascript"><!--   
function add(){   
    window.location.href="<%=request.getContextPath() %>/student.do?method=add";   
}
   
  
function del(id){   
$.ajax( {   
    type : "POST",   
    url : "<%=request.getContextPath()%>/student.do?method=del&id=" + id,   
    dataType: "json",   
    success : function(data) {   
        if(data.del == "true"){   
            alert("删除成功!");   
            $("#" + id).remove();   
        }
   
        else{   
            alert("删除失败!");   
        }
   
    }
,   
    error :function(){   
        alert("网络连接出错!");   
    }
   
}
);   
}
   
// --></script>  
</head>  
<body>  
  
<input id="add" type="button" onclick="add()" value="添加"/>  
<table >  
    <tr>  
        <td>序号</td>  
        <td>姓名</td>  
        <td>密码</td>  
        <td>操作</td>  
    </tr>  
    <c:forEach items="${list}" var="student">  
    <tr id="<c:out value="${student.id}"/>">  
        <td><c:out value="${student.id}"/></td>  
        <td><c:out value="${student.user}"/></td>  
        <td><c:out value="${student.psw}"/></td>  
        <td>  
            <input type="button" value="编辑"/>        
            <input type="button" onclick="del('<c:out value="${student.id}"/>')" value="删除"/>  
        </td>  
    </tr>  
    </c:forEach>  
       
</table>  
</body>  
</html>  

 

student_add.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"  
    pageEncoding="UTF-8"%>  
<%@ include file="/include/head.jsp"%>  
<!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>  
<mce:script type="text/javascript"><!--
function turnback(){   
    window.location.href="<%=request.getContextPath() %>/student.do";   
}   
// --></mce:script>  
</head>  
<body>  
<form method="post"action="<%=request.getContextPath() %>/student.do?method=save">  
<div><c:out value="${addstate}"></c:out></div>  
<table>  
    <tr><td>姓名</td><td><input id="user"name="user"type="text"/></td></tr>  
    <tr><td>密码</td><td><input id="psw"name="psw"type="text"/></td></tr>  
    <tr><td colSpan="2"align="center"><input type="submit"value="提交"/><input type="button"onclick="turnback()"value="返回"/> </td></tr>  
</table>  
  
</form>  
</body>  
</html>  

 

controller类实现,只需把注解写上,spring就会自动帮你找到相应的bean,相应的注解标记意义,不明白的,可以自己查下@Service,@Controller,@Entity等等的内容。

package com.mvc.controller;   
  
import java.util.List;   
  
import javax.servlet.http.HttpServletRequest;   
import javax.servlet.http.HttpServletResponse;   
  
import org.apache.commons.logging.Log;   
import org.apache.commons.logging.LogFactory;   
import org.springframework.beans.factory.annotation.Autowired;   
import org.springframework.stereotype.Controller;   
import org.springframework.ui.ModelMap;   
import org.springframework.web.bind.annotation.RequestMapping;   
import org.springframework.web.bind.annotation.RequestMethod;   
import org.springframework.web.bind.annotation.RequestParam;   
import org.springframework.web.servlet.ModelAndView;   
  
import com.mvc.entity.Student;   
import com.mvc.service.StudentService;   
  
@Controller  
@RequestMapping("/student.do")   
public class StudentController {   
    protected final transient Log log = LogFactory   
    .getLog(StudentController.class);   
    @Autowired  
    private StudentService studentService;   
    public StudentController(){   
           
    }
   
       
    @RequestMapping  
    public String load(ModelMap modelMap){   
        List<Object> list = studentService.getStudentList();   
        modelMap.put("list", list);   
        return "student";   
    }
   
       
    @RequestMapping(params = "method=add")   
    public String add(HttpServletRequest request, ModelMap modelMap) throws Exception{   
        return "student_add";   
    }
   
       
    @RequestMapping(params = "method=save")   
    public String save(HttpServletRequest request, ModelMap modelMap){   
        String user = request.getParameter("user");   
        String psw = request.getParameter("psw");   
        Student st = new Student();   
        st.setUser(user);   
        st.setPsw(psw);   
        try{   
            studentService.save(st);   
            modelMap.put("addstate", "添加成功");   
        }
   
        catch(Exception e){   
            log.error(e.getMessage());   
            modelMap.put("addstate", "添加失败");   
        }
   
           
        return "student_add";   
    }
   
       
    @RequestMapping(params = "method=del")   
    public void del(@RequestParam("id") String id, HttpServletResponse response){   
        try{   
            Student st = new Student();   
            st.setId(Integer.valueOf(id));   
            studentService.delete(st);   
            response.getWriter().print("{\"del\":\"true\"}");   
        }
   
        catch(Exception e){   
            log.error(e.getMessage());   
            e.printStackTrace();   
        }
   
    }
   
}
  

 

service类实现

package com.mvc.service;   
  
import java.util.List;   
  
import org.springframework.beans.factory.annotation.Autowired;   
import org.springframework.stereotype.Service;   
import org.springframework.transaction.annotation.Transactional;   
  
import com.mvc.dao.EntityDao;   
import com.mvc.entity.Student;   
  
@Service  
public class StudentService {   
 @Autowired  
 private EntityDao entityDao;   
    
 @Transactional  
 public List<Object> getStudentList(){   
  StringBuffer sff = new StringBuffer();   
  sff.append("select a from ").append(Student.class.getSimpleName()).append(" a ");   
  List<Object> list = entityDao.createQuery(sff.toString());   
  return list;   
 }
   
    
 public void save(Student st){   
  entityDao.save(st);   
 }
   
 public void delete(Object obj){   
  entityDao.delete(obj);   
 }
   
}
 

转载于:https://www.cnblogs.com/summer520/p/3432748.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/361494.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

解决maven项目Cannot change version of project facet Dynamic web module to 3.0

1、打开新建的servlet文件例如&#xff08;hibernate.cfg.xml&#xff09;修改头文件为 <?xml version"1.0" encoding"UTF-8"?><!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" &quo…

爬取w3c课程—Urllib库使用

爬虫原理 浏览器获取网页内容的步骤&#xff1a;浏览器提交请求、下载网页代码、解析成页面&#xff0c;爬虫要做的就是&#xff1a; 模拟浏览器发送请求&#xff1a;通过HTTP库向目标站点发起请求Request&#xff0c;请求可以包含额外的header等信息&#xff0c;等待服务器响应…

关于SSL证书配置、升级的一些问题总结

SSL会成为网站、APP、小程序&#xff08;小程序已经强制使用https&#xff09;等项目的标配。关于SSL证书安装使用的问题今天总结下&#xff0c;以备用。 环境配置&#xff1a;windows server 2008 R2和IIS7.0 1、 安装SSL证书的环境 (温馨提示&#xff1a;安装证书前请先备份…

如何为JBoss Developer Studio 8设置集成和SOA工具

最新的JBoss Developer Studio&#xff08;JBDS&#xff09;的发布带来了有关如何开始使用尚未安装的各种JBoss Integration和BPM产品工具集的问题。 在本系列文章中&#xff0c;我们将为您概述如何安装每套工具并说明它们支持哪些产品。 这将有助于您在着手进行下一个JBoss集…

WildFly 8的Camel子系统集成了Java EE –入门

就在三天前&#xff0c;围绕Thomas Diesler&#xff08; tdiesler &#xff09;的团队发布了WildFly-Camel子系统的2.0.0.CR1版本&#xff0c;它允许您将Camel Routes添加为WildFly配置的一部分。 路由可以部署为JavaEE应用程序的一部分。 JavaEE组件可以访问Camel Core API和各…

jQuery中国各个省份地图分部代码

jQuery中国各个省份地图分部代码 在线演示本地下载更多专业前端知识&#xff0c;请上 【猿2048】www.mk2048.com

Spring Boot Actuator:自定义端点,其顶部具有MVC层

Spring Boot Actuator端点允许您监视应用程序并与之交互。 Spring Boot包含许多内置端点&#xff0c;您也可以添加自己的端点。 添加自定义端点就像创建一个从org.springframework.boot.actuate.endpoint.AbstractEndpoint扩展的类一样容易。 但是Spring Boot Actuator也提供了…

jQuery自适应倒计时插件

jQuery自适应倒计时插件 在线演示本地下载更多专业前端知识&#xff0c;请上 【猿2048】www.mk2048.com

Unity3D实践系列03,使用Visual Studio编写脚本与调试

在Unity3D中&#xff0c;只有把脚本赋予Scene中的GameObject&#xff0c;脚本才会得以执行。 添加Camera类型的GameObject。 Unity3D默认使用"MonoDevelop"编辑器&#xff0c;这里&#xff0c;我想使用Visual Studio作为编辑器。 依次点击"Edit","Pre…

纯CSS3文字Loading动画特效

纯CSS3文字Loading动画特效是一款个性的loading文字加载动画。 在线演示本地下载更多专业前端知识&#xff0c;请上 【猿2048】www.mk2048.com

如何为JBoss Developer Studio 8设置BPM和规则工具

最新的JBoss Developer Studio&#xff08;JBDS&#xff09;的发布带来了有关如何开始使用尚未安装的各种JBoss Integration和BPM产品工具集的问题。 在本系列文章中&#xff0c;我们将为您概述如何安装每套工具并说明它们支持哪些产品。 这将有助于您在着手进行下一个JBoss集…

基于HTML5陀螺仪实现ofo首页眼睛移动效果

最近用ofo小黄车App的时候&#xff0c;发现以前下方扫一扫变成了一个眼睛动的小黄人&#xff0c;觉得蛮有意思的&#xff0c;这里用HTML5仿一下效果。 ofo眼睛效果 效果分析 从效果中不难看出&#xff0c;是使用陀螺仪事件实现的。 这里先来看一下HTML5中陀螺仪事件的一些概…

定时开机 命令 自动开机

自动开机&#xff1a; 首先开机后按住Delete键&#xff0c;就是平常常用的删除按键&#xff0c;然后就会进入到BIOS界面。虽然是一个满眼E文的蓝色世界&#xff0c;但不要害怕&#xff0c;没有问题的。 在BIOS设置主界面中选择“Power”选项,进入电源管理窗口。有些机器是在“P…

多米诺骨牌 优化版

算法&#xff1a; 在之前搜索出状态的基础上&#xff0c;再压缩一次状态。 View Code //by yefeng #include<iostream> using namespace std;typedef long long LL; const int mod 9937; int mask,idx, n , m;struct Matrix{int mat[257][257];void zero(){ memse…

Apache Camel请向我解释这些端点选项的含义

在即将发布的Apache Camel 2.15中&#xff0c;我们使Camel更智能。 现在&#xff0c;它可以充当老师&#xff0c;并向您说明其配置方式以及这些选项的含义。 Camel可以做的第一课是告诉您如何配置所有端点以及这些选项的含义。 接下来我们要学习的课程是让Camel解释EIP的选项…

微信扫码进入小程序

这几天开发完小程序之后&#xff0c;需要实现微信扫码进入小程序&#xff0c;坎坎坷坷的过程终于实现了&#xff0c;现在做一总结&#xff1a; 1、配置二维码规则&#xff1a; 2、页面插入代码即可&#xff1a; onLoad: function(options) {console.log("index 生命周期 o…

使用用户名/密码和Servlet安全性保护WebSockets

RFC 6455提供了WebSockets安全注意事项的完整列表。 其中一些是在协议本身中烘焙的&#xff0c;其他一些则需要更多有关如何在特定服务器上实现它们的解释。 让我们谈谈协议本身内置的一些安全性&#xff1a; HTTP请求中的Origin头仅包含标识发起该请求的主体&#xff08;网页…

线程池之外:Java并发并不像您想象的那么糟糕

Apache Hadoop&#xff0c;Apache Spark&#xff0c;Akka&#xff0c;Java 8流和Quasar&#xff1a; 针对Java开发人员的经典用例以及最新的并发方法 关于并发性更新概念的讨论很多&#xff0c;但是许多开发人员还没有机会将他们的想法缠住。 在本文中&#xff0c;我们将详细介…

vue中使用Ueditor编辑器 -- 1

一、 下载包&#xff1a; 从Ueditor的官网下载1.4.3.3jsp版本的Ueditor编辑器&#xff0c;官网地址为&#xff1a;http://ueditor.baidu.com/website/download.html 下载解压后会得到如果下文件目录&#xff1a; 将上述Ueditor文件夹拷贝到vue项目的static文件夹中&#xff0…

编译原理--递归下降分析实验C++

一、实验项目要求 1.实验目的 根据某一文法编制调试递归下降分析程序&#xff0c;以便对任意输入的符号串进行分析。本次实验的目的主要是加深对递归下降分析法的理解。 2.实验要求 对下列文法&#xff0c;用递归下降分析法对任意输入的符号串进行分析&#xff1a; &#…