search
HomeWeb Front-endHTML Tutorial[Dynamic Page] (3) Part 2: Extract the class name and attribute name of the Jar package through custom annotations_html/css_WEB-ITnose

    上篇博客介绍了通过反射读取Jar包的类名和属性名,但是问题是读不出类名和属性名的中文注释和属性类型。所以上篇博客埋下了一个伏笔,就是通过自定义注解的方式读取Jar包的类名、属性名、中文注释和属性类型。这篇博客我们就来好好讲讲是如何实现的。

    首先先说一下,由于我们的Jar包没有放到项目下,所以就想着怎么能把Jar包添加进来,所以先做了一个类似于上传文件的功能,将Jar上传进来,然后再读取Jar包里面的类名、属性名等一系列属性,再添加到数据库中。总体的思路确定了,下面就开始实施。

    首先是上传Jar包。这个我以前写过springMVC的文件上传的博客,具体可以参考我之前写的博客。

/**	 * Jar包上传	 * @param request	 * @param response	 * @return	 * @throws IllegalStateException	 * @throws IOException	 */	@RequestMapping("/upload2")	public String upload2(HttpServletRequest request,HttpServletResponse response) throws IllegalStateException, IOException{		CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(request.getSession().getServletContext());		//判断request里面是否是Multipart类型的数据		if(multipartResolver.isMultipart(request)){			//把request强制转换成MultipartHttpServletRequest类型的			MultipartHttpServletRequest multiRequest = (MultipartHttpServletRequest)request;						//用迭代器去判断里面有多少文件,遍历文件的一个方法			Iterator<string> iter = multiRequest.getFileNames();			while (iter.hasNext()) {				//迭代器的作用就是一个一个拿文件,把文件拿到				MultipartFile file = multiRequest.getFile((String)iter.next());				if(file != null){					//拿到文件之后输出文件					//首先定义文件名称					String fileName = file.getOriginalFilename();					//定义输出路径					String path = "G:/" + fileName;					String fromFilePath = "G:\\" + fileName;					//初始化文件					File localFile = new File(path);					//用stringMVC给咱们提供的方法给它写到本地去					file.transferTo(localFile);											try {						getJarName(fromFilePath, request, response);					} catch (Exception e) {						// TODO Auto-generated catch block						e.printStackTrace();					}				}							}		}		return "/UploadJarBag";	</string>

    下面就是为自定义注解做准备了,自定义一个注解解析器

package com.tgb.itoo.uisystem.entity;import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;/** * 定义一个注解解析器 * @author 高迎 * @date 2015年3月11日10:10:49 * */@Retention(RetentionPolicy.RUNTIME) // 注解会在class字节码文件中存在,在运行时可以通过反射获取到  @Target({ElementType.FIELD,ElementType.METHOD,ElementType.TYPE})//定义注解的作用目标**作用范围字段、枚举的常量/方法  @Documented//说明该注解将被包含在javadoc中  public @interface FieldMeta {	 /**      * 是否为序列号      * @return      */      boolean id() default false;      /**      * 字段名称      * @return      */      String name() default "";              /**      * 字段长度,默认值为255      * @return      */    int length() default 255;             /**      * 是否可编辑      * @return      */      boolean editable() default true;      /**      * 是否在列表中显示      * @return      */      boolean summary() default true;      /**      * 字段描述      * @return      */      String description() default "";  }
    定义一个获得注解的帮助类
package com.tgb.itoo.uisystem.controller;import java.lang.reflect.Field;import com.tgb.itoo.uisystem.entity.FieldMeta;/** * 获得到注解的帮助类 * @author 高迎 * @date 2015年3月11日10:12:15 * */public class SortableField {	public SortableField(){}          public SortableField(FieldMeta meta, Field field) {          super();          this.meta = meta;          this.field = field;         this.name=field.getName();              this.type=field.getType();      }            public SortableField(FieldMeta meta, Field field, int length) {          super();          this.meta = meta;          this.field = field;         this.name=field.getName();              this.type=field.getType();         this.length=length;    }         public SortableField(FieldMeta meta, String name, int length, Class> type) {          super();          this.meta = meta;          this.name = name;         this.length = length;        this.type = type;      }          private FieldMeta meta;      private Field field;      private String name;      private int length;	public int getLength() {		return length;	}	public void setLength(int length) {		this.length = length;	}	private Class> type;            public FieldMeta getMeta() {          return meta;      }      public void setMeta(FieldMeta meta) {          this.meta = meta;      }      public Field getField() {          return field;      }      public void setField(Field field) {          this.field = field;      }      public String getName() {          return name;      }      public void setName(String name) {          this.name = name;      }                 public Class> getType() {          return type;      }       public void setType(Class> type) {          this.type = type;      } }

    通过自定义注解读取Jar包的属性

/**	 * 读取jar包的类名和属性名	 * @param jarFile	 * @throws Exception	 */	public void getJarName(String jarFile, HttpServletRequest request, HttpServletResponse response) throws Exception {		//定义一个注解帮助类类型的list		List<sortablefield> list = new ArrayList<sortablefield>();  		try{			//通过将给定路径名字符串转换为抽象路径名来创建一个新File实例			File f = new File(jarFile);			URL realURL = f.toURI().toURL();			URLClassLoader myClassLoader = new URLClassLoader(new URL[]{realURL},Thread.currentThread().getContextClassLoader());						//通过jarFile和JarEntry得到所有的类			JarFile jar = new JarFile(jarFile);			//返回zip文件条目的枚举			Enumeration<jarentry> enumFiles = jar.entries();			JarEntry entry;						//测试此枚举是否包含更多的元素			while(enumFiles.hasMoreElements()){				entry = (JarEntry)enumFiles.nextElement();				if(entry.getName().indexOf("META-INF") myclass = myClassLoader.loadClass(className);																												//根据class对象获得属性					  											Field[] fields = myclass.getDeclaredFields();  //这里面获得了四个字段						Entities entitiesList = new Entities();												//获得类上的注解						FieldMeta meta111 = myclass.getAnnotation(FieldMeta.class); 						System.out.println("类名的中文注释:" + meta111.name());						entitiesList.setEntityDesc(meta111.name());  //类名的中文描述(中文注释)												for(Field f1 : fields){							//获取字段中包含fieldMeta的注解  			                FieldMeta meta = f1.getAnnotation(FieldMeta.class);  			                System.out.println("打印长度:" +  meta.length());			                System.out.println("打印 类型:" +  f1.getType().getName());			                String getPropertyType = f1.getType().getName().toString();			                String strPropertyType = getPropertyType.substring(getPropertyType.lastIndexOf(".")+1, getPropertyType.length());							System.out.println("最后截取的属性类型:" + strPropertyType);			                if(meta!=null){ 			                	SortableField sf = new SortableField(meta, f1);  			                				                	//System.out.println("字段名称:"+l.getName()+"\t字段类型:"+l.getType()+"\t注解名称:"+l.getMeta().name()+"\t注解描述:"+l.getMeta().description());  		                        //System.out.println("字段名称:"+l.getName());	                				                	 //将属性名和类名添加到实体中								entitiesList.setEntityName(strClassName);  //类名								entitiesList.setDataType(strPropertyType);  //属性类型								//entitiesList.setDataType(meta.getClass().getTypeName());								entitiesList.setDataLength(meta.length());  //长度								entitiesList.setPropertyName(f1.getName());   //属性名									entitiesList.setPropertyDesc(sf.getMeta().name());  //属性名的中文描述(中文注释)								entitiesBean.addJarToTable(entitiesList);				                	          		                    			                   			                }				                						}																							}				}			}		} catch(IOException e){			e.printStackTrace();		}	}</jarentry></sortablefield></sortablefield>

    到这里,通过自定义注解的方式读取Jar包的类名、属性名包括中文注释和属性类型就都能实现了。我上传了一份Jar包:http://download.csdn.net/detail/huanjileaimeidan/8548345  这个是我上传上去可以进行测试的Jar包,有兴趣的可以下载下来试一试,有什么问题请在下方留言,欢迎和我沟通。


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software