美文网首页Java
spring自定义标签

spring自定义标签

作者: GG_lyf | 来源:发表于2020-11-11 17:20 被阅读0次

前言

  大三了,大学时间这么快就要进入倒计时了,学校的课程也已经改革了,从ssh变成ssm了。老师还是那个老师,只是讲课的内容变了。半个学期,终于来了一次的ssm作业。老师让我们搞一个至少含有springMVC三个功能的页面。肯定有登录注册吧。我就想着用数据库?有点大材小用了,但是不用数据库,怎么存数据啊!难啊!这spring真是一大堆的包,看的心里都慌了。但哥们是那种说放弃就放弃的人吗?(只有别人放弃我的份啊),说干就干。


开搞

1.用idea创建个web项目(很简单的,自己建就完了)


项目目录

2.在resources下创建META-INF,只有在这个目录下编译时才能拿到里面的文件(哥们各种尝试,就这一种方法可以)

3.在写一个META-INF同级目录下创建applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:li="http://www.lyf.cn/schema/li"
       xsi:schemaLocation="http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.lyf.cn/schema/li
        http://www.lyf.cn/schema/li/user.xsd">

</beans>

4.写一个是实体类

public class User implements Serializable {
 private String id;
 private String name;
 private String pass;
 private String email;
 private String addr;
//get,set和toString
}

//用于封装标签中的属性

5.在META-INF下创建一个spring.schemas,写上

http\://www.lyf.cn/schema/li/user.xsd=META-INF/user.xsd
//这个是指定那个标签内容是什么

6.在META-INF下创建一个user.xsd,写上

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema xmlns="http://www.lyf.cn/schema/li"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            targetNamespace="http://www.lyf.cn/schema/li"
            elementFormDefault="qualified">

  <xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<!--这玩意就是定义标签内容的-->
  <xsd:element name="user">
    <xsd:complexType>
      <xsd:attribute name="id" type="xsd:string"></xsd:attribute>
      <xsd:attribute name="name" type="xsd:string"></xsd:attribute>
      <xsd:attribute name="pass" type="xsd:string"></xsd:attribute>
      <xsd:attribute name="email" type="xsd:string"></xsd:attribute>
      <xsd:attribute name="addr" type="xsd:string"></xsd:attribute>
    </xsd:complexType>
  </xsd:element>

</xsd:schema>

7..在META-INF下创建一个spring.handlers,写上

http\://www.lyf.cn/schema/li=org.lyf.Handlers.UserHandlers

//这个就是指定哪个解析器

8.创建个Handler

import org.springframework.beans.factory.xml.NamespaceHandlerSupport;

public class UserHandlers extends NamespaceHandlerSupport {
  @Override
  public void init() {
    registerBeanDefinitionParser("user",new UserParserDefinitons());
  }
}

//解析标签

9.创建ParserDefinitons

import org.lyf.bean.User;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser;
import org.w3c.dom.Element;

public class UserParserDefinitons extends AbstractSingleBeanDefinitionParser {

  @Override
  protected Class<?> getBeanClass(Element element) {
    return User.class;
  }

  @Override
  protected void doParse(Element element, BeanDefinitionBuilder builder) {
    builder.addPropertyValue("id", element.getAttribute("id"));
    builder.addPropertyValue("name", element.getAttribute("name"));
    builder.addPropertyValue("pass", element.getAttribute("pass"));
    builder.addPropertyValue("email", element.getAttribute("email"));
    builder.addPropertyValue("addr", element.getAttribute("addr"));
  }
}
//解析标签的内容

10.在applicationContext.xml中写标签和内容

<li:user id="one" name="llll" pass="32232" email="12534645485@qq.com" addr="aaaaaaaaaaaaaaa"/>
<li:user id="two" name="ddddd" pass="34343" email="333323423453@qq.com" addr="fffff"/>

11.编写测试类

import org.lyf.bean.User;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class UserService {

  public static void main(String[] args) {
    ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
    User one = (User) context.getBean("one");
    System.out.println(one);
  }

}

12.结果


13.maven依赖(两个就行了)

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>4.3.18.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
      <version>4.3.18.RELEASE</version>
    </dependency>

注:没写页面,只能测试用,不过够学习了,github

相关文章

  • Spring源码分析-bean的解析(3)

    Spring源码分析-bean的解析(3) 当前版本 Spring 4.3.8 自定义标签的解析 自定义标签使用 ...

  • Spring4 自定义标签解析源码

    介绍 Spring将标签解析分为自定义标签解析和默认标签解析。 自定义标签解析开始位置 BeanDefinitio...

  • Spring的自定义标签

    Spring为自定义xml标签加载提供了扩展。用户可自定义标签并注册到Spring的bean容器中。实现较为复杂的...

  • spring解析自定义标签

    title: spring解析自定义标签tags: spring,源码grammar_cjkRuby: true ...

  • Spring 事务解析过程

    使用Spring的事务需要在xml配置 tx是Spring的自定义标签,该自定义标签的处理类为 从上面的代码可知,...

  • dubbo服务导出

    dubbo版本:2.7.2 一、spring解析自定义扩展标签。 spring分析xml节点的可以看出对于自定义命...

  • FreeMarker自定义标签

    freemarker 自定义标签 有两种方法,一种是Spring注解添加自定义标签 一种的编码添加自定义标签 第...

  • 2.1 dubbo自定义标签

    dubbo的自定义的spring标签通过DubboNamespaceHandler继承NamespaceHandl...

  • Spring源码解析(六)-解析bean标签

    Spring版本 5.2.5.RELEASE 参考 学习Spring源码(二)自定义标签属性 源码解读 在Spri...

  • 【Dubbo】Spring融合

    Dubbo和Spring结合使用了大量的自定义标签。dubbo正是通过这些标签和Spring融合在一起,实现了服务...

网友评论

    本文标题:spring自定义标签

    本文链接:https://www.haomeiwen.com/subject/ylcjbktx.html