Servlet 3.0 之 Web应用

资讯 2024-07-10 阅读:37 评论:0
一个Web应用是一个Web服务器上众多资源的集合,它包括了servlets,HTML页面,类,和其它组成一个完整应用的资源。Web应用可以被捆绑和运行在来自多个供应商的多种容器上。A Web application is a pool of...
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

一个Web应用是一个Web服务器上众多资源的集合,它包括了servlets,HTML页面,类,和其它组成一个完整应用的资源。Web应用可以被捆绑和运行在来自多个供应商的多种容器上。

A Web application is a pool of many resources on a Web server that includes servlets, HTML pages, classes, and other resources that make up a full application. Web applications can be tied and run on multiple containers from multiple suppliers.

在一个Web服务器中,一个Web应用把一个指定的路径作为根目录。比如,一个分类应用能够位于"http://www.mycorp.com/catalog"。
所有以此为前缀的请求都会被路由到代表分类应用的ServletContext

In a Web server, a Web application uses a specified path as a root directory. For example, a classification application can be located at ".
all requests with this prefix will be routed to ServletContext for application on behalf of the classification.

一个servlet能够为Web应用的自动构建建立规则。比如,~user/映射能够被用来映射到一个位于/home/user/public_html/ 的Web应用。

For example, the map of /user/ can be used to map a Web application at /home/user/public_html/.

默认地,在任意时刻一个Web应用的一个时刻必须运行在一个VM上面。如果这个应用通过它的描述符被标记为分布式的,那么这个行为能够被重写。被标记为分布式的应用必须比不同Web应用遵循更多限制规则。

By default, a moment when a Web application is applied must run on a VM at any given time. If this application is marked as distributed through its descriptor, the action can be rewritten. Applications marked as distributed must follow more restrictive rules than different Web applications.

一个servlet容器必须在一个Web应用和一个ServletContext之间确保一对一的对应关系。一个ServletContext对象提供一个有应用视图的servlet。

A servlet container must ensure a one-to-one correspondence between a Web application and a ServletContext. An ServletContext object provides a servlet with an application view.

一个Web应用必须包含下列项目:

A Web application must contain the following items:

  • Servlets
  • JSP页面
  • Utility Classes
  • 静态文件(HTML,Image,sounds,etc.)
  • 客户端Java applets,beans和类
  • 黏合上述元素的描述符元信息

这份规范定义了一个用来部署和打包的层次结构,这种层次结构能够存在一个开放文件系统中,一个归档文件中或者其它形式中。

This norm defines a hierarchy for deployment and packaging that can exist in an open document system, in an archive document or in other forms.

一个Web应用以一个结构化的层次目录存在。这个层次的根作为属于应用一部分的文件的文档根目录。
比如,对于一个Web容器中用/catalog上下文路径的一个Web应用,在Web应用层次的基目录,或者在一个META-INF/resources目录下包含index.html,WEB-INF/lib中的JAR文件中的index.html可以用来满足来自/catalog/index.html的请求。如果一个index.html文件同时出现在根上下文中和应用的WEB-INF/lib目录里的JAR文件中的META-INF/resources目录里,那么根上下文中的文件必须被使用。匹配URLs到上下文路径的规则在章节Mapping Requests Servlets中。由于应用的上下文路径决定了Web应用的内容的的URL命名空间,web容器必须拒绝定义了会在URL命名空间中引起潜在冲突的上下文路径的应用。比如,通过用相同上下文路径部署第二个Web应用就会出现这种情况。由于请求会按照大小写敏感方式被映射到资源,潜在冲突的决定也必须对大小写敏感。
一个特殊目录存在于名字为WEB-INF的应用层级中。这个目录包含了所有不在应用文档根目录的应用相关的东西。大多数WEB-INF 节点并不是应用的公开文档树的一部分。除了静态资源和打包在WEB-INF/lib目录中的JAR文件中META-INF/resources中的JSPs,包含在WEB-INF目录中的其它文件不会被容器直接暴露给客户端。然而,WEB-INF目录的内容对ServletContext上使用getResourcegetResourceAsStream方法调用的servlet代码可见,并且可以使用RequestDispatcher方法调用来暴露。因此,如果应用开发者需要从servlet代码中访问应用那些不直接暴露给客户端的详细配置信息,他可以把它们放到这个目录下面。由于请求会以大小写敏感的方式被映射到资源,比如,客户端对/WEB-INF/foo/WEb-iNf/foo的请求不应该获得位于/WEB-INF目录下以及任何形式的目录列表的Web应用的内容。

A Web application exists with a structured level directory under a META-INF/resources directory containing index. WEB-INF/lib, as part of the application. For example, a Web application in a Web container using /catalog background path, at the Web level of application, or at the META-INF/resources directory containing an index. , as part of the net/Wemsnet/Wem> directory, the use of the directory and the use of the directory

WEB-INF目录的内容如下:

The table of contents of WEB-INF reads as follows:

  • /WEB-INF/web.xml部署描述符
  • 放servlet和utility classes的/WEB-INF/classes/目录。这个目录下的类必须能让应用的类加载器访问到。
  • 放JAVA归档文件的/WEB-INF/lib/.jar*的区域。这些文件包含servlets,beans,打包在JAR中的JSPs和静态资源,以及对Web应用有用的utility类。Web应用的类加载器必须能够从任何归档文件中加载类。

Web应用类加载器必须先从WEB-INF/classes加载类,然后从WEB-INF/lib目录中的JARs中加载类。除了打包在JAR文件中的静态资源,来自客户端去访问WEB-INF/目录里资源的任何请求必须返回一个带404状态码的response。

The Web application loader must first load a class from WEB-INF/classes and then load a class from JARs in the WEB-INF/lib directory. With the exception of static resources packaged in JAR files, any request from a client to access resources in the WEB-INF/ directory must return a response with a 404 status code.

  1. 应用目录结构的例子
    下面是示例Web应用中所有文件的列表:

    Examples of application of directory structure
    : The following is a list of all files in the application of Example Web:

    
    

Web应用能使用标准的Java归档工具被打包进Web ARchive format(WAR)文件中。比如,对于问题跟踪的一个应用可能被分布在叫做issuetrack.war的归档文件中。

Web applications that use standard Java archive tools are packaged into Web ARchiveformat(WAR) files. For example, an application for problem tracking may be distributed in a file called issuetrack.war.

当打包进这种形式中,将会出现一个META-INF目录,它包含了对Java 归档工具很有用的信息。这个目录一定不能被容器直接作为内容来响应一个Web客户端的请求,尽管它的内容可以通过ServletContext上的getResourcegetResourceAsStream调用对servlet代码可见。任何访问META-INF目录下的资源的请求必须返回带404状态码的response。

When packaged in this form, there will be a directory of META-INF, which contains information useful for Java's archiving tool. This directory must not be used directly by a container to respond to a request from a Web client, although its contents can be found on ServletContext via getresource and >em>getresourceAsstream to match the servlet code. Any request for access to resources under the META-INF directory must return to response with a 404 status code.

Web应用部署描述符包含下列配置类型和部署信息:

Web Applied Deployment Descriptors contain the following configuration types and deployment information:

  • ServletContext初始化参数
  • Session Configuration
  • Servlet/JSP定义
  • Servlet/JSP映射
  • MIME类型映射
  • Welcome File list
  • Error Pages
  • Security
  1. 扩展上的依赖
    当很多应用使用相同的代码或者资源时,它们通常会在容器中被安装为库文件。这些文件很通用或者是无需考虑兼容性就能使用的标准APIs。被一个或者多个应用使用的文件将会作为Web应用的一部分被访问。容器必须为这些库文件提供一个目录。这个目录中的文件必须要在多个Web应用之间被访问到。这个目录的位置根据具体的容器而定。servlet容器用来加载这些库文件的类加载器对同一个JVM中所有的Web应用都应该一样。这个类加载器实例必须在Web应用类加载器的父加载器链的某个位置上。

应用开发者需要知道哪些扩展要被安装在一个Web容器中,并且容器需要知道WAR中哪些依赖servlets有这些库,以便保留兼容性。

Applied developers need to know which extensions are to be installed in a Web packaging, and the packaging needs to know which of the WARs relies on the servlets to have these reservoirs in order to retain compatibility.

依赖这个扩展的应用开发者必须在WAR文件中提供一个META-INF/MANIFEST.MF入口,这个入口列出了WAR需要的所有扩展。manifest入口的格式应该遵循标准JAR manifest格式。在Web应用的部署期间,Web容器必须遵循下列规则,给应用配上正确的扩展版本。

Applications developers relying on this extension must provide an META-INF/MANIFEST.MF entry in the WAR document, which lists all the extensions required by the WAR. The format of the manifest entry should follow the standard JAR manifest format. During the deployment of Web applications, Web packagings must follow the following rules for the correct extension of the application.

Web容器必须能够识别这样的声明依赖,它们被写在WAR里面WEB-INF/lib 目录入口下的任意类库JARs的manifest入口里。

Web packagings must be able to recognize the reliance on such declarations, which are written in any library of JARs' entry under the WAR directory at WEB-INF/lib.

如果一个Web容器不能够满足这种方式里面声明的依赖,它应该用一个错误信息来拒绝这种应用。

If a Web container does not satisfy the stated reliance in this mode, it should reject the application with a false message.

  1. Web应用类加载器
    容器使用来从WAR里加载一个servlet的类加载器必须允许开发者使用getResource并遵循普通Java SE机制来加载WAR里面的库JARs里的任意资源。如Java EE license协议描述的,不是Java EE产品一部分的servlet容器不应该允许应用来重写Java SE平台不允许被修改的类,比如在java.和javax.命名空间里面的类。容器不应该允许应用来重写或者访问容器的实现类。
    推荐实现应用类加载器以便WAR中的类和资源优先于容器端库JARs里面的类和资源。一个实现必须确保对于每一个部署在一个容器中的web应用,对Thread.currentThread.getContextClassLoader()的调用必须返回一个实现了本章具体协议的的ClassLoader实例。更进一步说,ClassLoader实例必须对于每个部署的web应用必须是一个单独的实例。容器需要在任何回调函数之前设置线程上下文ClassLoader到一个web应用中。

一个服务器用一个新版本来替换一个应用,而无需重启容器。当一个应用被替换,容器应该提供一个鲁棒的方法来保留应用中的会话数据。

A server replaces an application with a new version without reopening the container. When an application is replaced, the container should provide a powerful way to retain the session data in the application.

  1. 请求属性
    一个Web应用必须能够详细指出错误何时出现,应用中的其它资源被用来提供错误响应的内容体。这些资源的详情配置在部署描述符中。
    如果错误处理的问题是错误处理器是一个servlet或者一个JSP页面:
  • 被容器创建的未包装过的原始request和response对象被传递给这个servlet或者JSP页面。
  • 如果RequestDispatcher.forward已经被执行,请求路径和属性被设置给错误资源。
  • Table中的请求属性必须被设置:
    Table 请求属性和它们的类型
Request Attribute Type
javax.servlet.error.status_code java.lang.Integet
javax.servlet.error.exception_type java.lang.Class
javax.servlet.error.message java.lang.String
javax.servlet.error.exception java.lang.Throwable
javax.servlet.error.request_uri java.lang.String
javax.servlet.error.servlet_name java.lang.String

这些属性允许servlet根据状态码,异常类型,错误信息,异常对象传递,出现错误的servlet的请求的URI,以及出现错误的servlet的逻辑名字产生具体的内容。
把异常对象引到2.3版本的规范的属性列表中,异常类型和错误信息属性就是多余的了。它们被保留,是为了对以前版本的API做向后兼容。

These properties allowservlet to produce specific content based on the status code, the unusual type, the error information, the transfer of the unusual object, the URI of the request of the wrong servlet, and the logical name of the wrong servlet.
leads the abnormal object to the attribute list of the regulation in version 2.3, where the unusual type and the error information properties are superfluous. They are retained to be compatible backwards with the previous version of API.

  1. 错误页面
    当一个servlet出现一个错误,为了允许开发者定制返回给Web客户端的内容外观,部署描述符定义一个错误页面描述的列表。当一个servlet或者filter在response上为一个具体错误码调用sendError时,或者这个servlet产生一个传递给容器的异常或者错误时,这个语法允许资源的配置被容器返回。

如果sendError方法在response上被调用,容器会查找为Web应用使用状态码语法和尝试匹配声明的错误页面列表。如果有一个匹配的,容器返回匹配位置入口表明的资源。

If the sendError method is called on response, the container will find a list of the wrong pages using the status-code syntax and trying to match the statement for Web. If there is a match, the container returns the resources indicated at the matching position entry.

一个servlet或者filter可能在一个请求期间抛出下列异常:

A servlet or filter may have dropped the following anomalies during a request:

  • 运行时异常或者错误
  • ServletException或者其子类
  • IOException或者其子类

Web应用可以使用exception-type元素声明错误页面。这种情况下,容器通过对比抛出的异常和使用exception-type 定义的错误页面列表来匹配异常。一个匹配会让容器返回在位置入口指明的资源。类层次结构中最近的匹配会生效。

The Web application can use the exception-type element to declare the wrong page. In this case, the container matches the anomaly by comparing the abnormalities thrown out and by using the wrong page list defined by excep-type. A matching allows the container to return to the resources specified at the location entrance. The most recent matching in the class hierarchy will be effective.

如果没有包含一个exception-typeerror-page声明符合使用类层次匹配,并且抛出的异常是一个ServletException或者其子类,容器获取被包装过的异常,如被ServletException.getRootCause方法定义的一样。在错误页面声明上做第二次通过,再次尝试匹配错误页面声明,但是使用包装过的异常。

If there is no exception-type statement error-page that matches the level of use and ejects an anomaly that is ServletException or its sub-class, the packaging acquires a packaged anomaly, as defined by the ServletException.getRootCause method.

在部署描述符中使用exception-type元素的错误页面异常对exception-type的类名必须唯一。类似的,使用status-code*元素的错误页面在部署描述符中对于状态码必须唯一。

The wrong page using the extition-type element in the deployment descriptor must be unique to the exception-type class name. Similarly, the wrong page using the status-code* element must be unique to the status code in the deployment descriptor.

当使用RequestDispatcher或者filter.doFilter方法调用时,上述错误页面机制不会干涉错误何时出现。这种方式下,一个使用RequestDispatcher的filter或者servlet有机会处理出现的错误。

When called using the method RequestDispatcher or filter.doFilter, the error page mechanism does not interfere with when the error occurs. Under this approach, a filter or servlet using RequestDispatcher has the opportunity to process the error.

如果一个servlet产生了一个没有被上述错误页面机制处理的错误时,容器必须确保发送一个状态码为500的response。

If an error is made by a server that is not handled by the error page mechanism described above, the packaging must ensure that a response with a status code of 500 is sent.

默认的servlet和容器将会使用sendError方法发送4xx和5xx状态的response,所以错误机制可以被调用。默认servlet和容器将会为2xx何3xx的responses使用setStatus,并且不会调用错误页面机制。

The default servlet and the container will send 4xx and 5x status response using the send Error method, so the error mechanism can be called. The default servlet and the container will use setStatus for 2x3x, and will not call the wrong page mechanism.

如果应用正在使用上述Asynchronous processing的异步操作,应用负责处理应用创建的线程中的所有错误。容器可以通过AsyncContext.start处理线程中的错误。为了处理AsyncContext.dispatch期间的出现的错误,参考“在dispatch方法执行期间可能出现的任何错误或异常必须被容器捕获和处理”。

If the anthropological operation of Asynchronous processing above is being applied, all errors in the thread created by the application will be handled. The packaging can handle errors in the thread through AsyncContext.start. In order to deal with errors that occurred during the period AsyncContext.dispatch, reference is made to “any errors or anomalies that may occur during the execution of dispatch

  1. 错误Filters
    错误页面机制在容器创建的未包装/未过滤的request和response对象上起作用。Filters和RequestDispatcher可以用来在一个错误response生成之前指明被应用的filters。

Web应用开发者能在Web应用部署描述符中定义一个叫做欢迎文件的部分URIs的有序列表。对这个列表的部署描述符语法会在下述Web应用部署描述符机制中说明。

WebApplication Developers can define an orderly list of deployment descriptors in Web that are called welcome files. The deployment descriptors for this list are described in the application of deployment descriptors in Web below.

当有一个请求WAR文件的目录入口对应的URI没有被映射到Web组件,这个机制的目的就是允许开发者为容器指定一个用来追加到URIs的部分URIs的有序列表。

When the URL corresponding to the directory entry to which the WR file is requested is not mapped to the Web component, the mechanism is designed to allow developers to specify an orderly list of parts of the URIs that are used to add to the URIs to the packaging.

请参考下列通用示例:
一个欢迎文件index.html能够被定义,以便对host:port/webapp/directory/ 的请求会返回host:port/webapp/directory.index.html 给客户端。上述的directory是WAR中的一个入口,而没有被映射到一个servlet或者JSP页面。

Please refer to the following generic example:
A welcoming document index.html
can be defined so that requests for host:port/webapp/directory/ return to host:port/webapp/directory.index.html for the client. above is a portal to WA and is not mapped to a server or JP page.

如果一个Web容器接收一个合法的部分请求,Web容器必须检查定义在部署描述符中的欢迎文件列表。欢迎文件列表是一个没有尾部或前导'/'的部分URIs的有序列表。Web服务器必须把每一个欢迎文件按照部署描述符中的顺序追加到部分请求,并且检查WAR中的静态资源是否被映射到那个请求URI。如果没有找到映射,Web服务器必须再次把每个欢迎文件按照部署描述符中的顺序追加到部分请求,并且检查这个servlet是否被映射到那个请求URI。Web容器必须把请求发送到WAR中第一个匹配到的资源。容器可能把请求发送到欢迎资源,方式或者是forward,或者是redirect,或者是区别于直接请求的一个容器详细机制。

If a Web container receives a valid partial request, the Web container must check the list of welcome files defined as those in the deployment profile. The list of welcome files is an orderly list of parts of URIs that do not have a tail or lead '/'. The Web server must add each welcome file to the request in the order in which the deployment profile is placed and check whether the static resources in WAR are mapped to that request URI. If no map is found, the Web server must again add each welcome file to the request in the order in which the deployment profile is located, and check whether the server is visible to the request URI. The Web container must send the request to the first WR matching resource. The container may send the request to the welcome resource in a way that is either forward, or redact, or a detailed mechanism different from the direct request.

如果按照上述方式没有找到匹配的欢迎文件,容器可以按照它能找到的合适方式去处理请求。对于一些配置,这意味着返回一个目录列表或者对另外一些配置就返回404的response。

If a matching welcome file is not found in the manner described above, the container can handle the request in the appropriate manner that it can find. For some configurations, this means returning a list of directories or other configurations to 404 response.

考虑这样一个Web应用:

Consider such a Web application:

  • 部署描述符列出了下列欢迎文件
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
  • WAR中的静态内容
    /foo/index.html
    /foo/default.jsp
    /foo/orderform.html
    /foo/home.gif
    /catalog/default.jsp
    /catalog/products/shop.jsp
    /catalog/products/register.jsp
  • /foo 将会被重定向到/foo/
  • /foo/ 将会被重定向到/foo/index.html
  • /catalog 将会被重定向到/catalog/
  • /catalog/ 将会被重定向到/catalog/default.jsp
  • /catalog/index.html 将会引发一个404 not found
  • /catalog/products 将会被重定向到/catalog/products/
  • /catalog/products/会被传递给默认servlet,如果有默认servlet。如果没有匹配的默认servlet,请求可能引发一个404 not found,也可能引发一个包含shop.jsp 和register.jsp** 的目录列表,或者可能引发被容器定义的其它行为。
  • 上述所有的静态内容能够和上述打包在jar文件META-INF/resources目录里列出的内容一起被打包进JAR文件中。

不属于Java EE兼容实现的Servlet容器被提倡(但不是必须)实现"Web Application Environment and Java EE specification"中描述的应用环境功能。如果它们没有实现要求支持这个环境的功能,在部署依赖它们的应用时,容器应该发出一个警告。

Servlet containers that are not Java EE compatible are promoted (but not required to) achieve the application environmental functions described in "Web Application Environment and Java EE Specialization". If they do not perform the functions required to support the environment, the packaging should give a warning when deploying applications that depend on them.

当一个web应用被部署到一个容器中,在web应用开始处理客户端请求之前,下列步骤必须按顺序执行。

When a web application is deployed in a container, the following steps must be carried out sequentially before the web application starts processing client requests.

  • 给每个在部署描述符中<listener>元素定义的事件监听器实例化一个实例。
  • 为实现了ServletContextListener的监听者实例,调用contextInitialized()方法。
  • 给部署描述符中<filter>元素定义的每一个filter实例化一个实例,并调用每个filter实例的init()方法。

如果一个web应用不包含任何Servlet,Filter,或者监听组件,或者用注解声明的相同组件,那么这个应用不要求包含一个web.xml。换句话说,一个仅包含静态文件或者JSP页面的应用不要求一个web.xml。

If a web application does not contain any Servlet, Filter, or listening components, or the same component as an annotated component, the application does not require the inclusion of a web.xml. In other words, an application that contains only static files or a JP page does not require a web.xml.

翻译自 Java Servlet Specification

Translating from Java ServerSpecification

Version 3.0 Rev a
Author:Rajiv Mordani
Date: December 2010

美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 美国可以使用什么加密货币交易所_前10名比特币交易平台名单

    美国可以使用什么加密货币交易所_前10名比特币交易平台名单
    美国可以使用什么加密货币交易所?What is an encrypted currency exchange that the United States can use?随着加密货币的普及,加密货币交易所也越来越多。对于美国的加密货币交易者而言,选择一个可靠、安全且易于使用的交易所是十分重要的事情。那么,美国可以使用哪些加密货币交易所呢?以下是前10名比特币交易平台名单:The choice of a reliable, secure, and easy-to-use...
  • 2017比特币已经挖出,比特币是什么?

    2017比特币已经挖出,比特币是什么?
    20 17比特币已经挖出了目录。20 17比特币被挖出来了。比特币是什么?比特币在20 17达到挖矿上限。在20 17中,比特币达到了挖矿上限,这意味着比特币的总数达到了2 1 100,000。比特币挖矿会越来越少。由于比特币挖矿的奖励每四年减半一次,未来比特币挖矿的数量将减少,比特币的价格可能会上涨。影响比特币市场的主要因素。除了挖矿上限和奖励减半之外,比特币市场还受到供需、投资者情绪和监管政策等因素的影响。比特币的未来前景。随着全球对比特币的认知度越来越高,比特币的前景仍...
  • 2015年宝马3系二手车价格多少钱

    2015年宝马3系二手车价格多少钱
    爱你一生不变心6558 2022-04-28 13:20:03 二手车能不能买主要看车况,如果车况好就可以考虑,车况不好价格再低也别考虑,像2015款宝马3系目前行情价是在18.32万这样,如果低...
  • Coinbase:财富100强企业过去一年的Web3采用率增长39%

    Coinbase:财富100强企业过去一年的Web3采用率增长39%
    随着比特币、以太坊等主流加密货币在web2世界的认可度变得越来越高,许多web2传统公司也积极拥抱web3,加速采用和开发区块链产品的速度和应用层面。With ˂a style= "max-width": 90%" href=https://m.php.cn/zt/21172.html" target="_blank" bitcoin, ˂a style="color:#f60; text-decoration: unde...
  • 区块链技术原理(转载)

    区块链技术原理(转载)
    转自:https://cloud.tencent.com/developer/article/1838661From: https://clud.tencent.com/development/article/1838661 本文主要是对区块链进行概念分析和组成技术解析,从哈希运算、数字签名、共识算法、智能合约、P2P网络等技术在区块链中的应用进行综合分析This paper focuses on conceptual analysis and technical com...
标签列表