上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: 3.解决Whitelabel Error Page的问题 # application.properties server.servlet.context-path=/restful-demo package com.example.demo; import org.springframework.b 阅读全文
posted @ 2020-08-28 12:03 gzhjj 阅读(7809) 评论(0) 推荐(0) 编辑
摘要: 1.使用STS创建SpringBoot项目 创建的SpringBoot项目默认是没有web.xml文件的,需要手动添加。 SpringBoot项目的结构如下: 2.遇到Whitelabel Error Page的问题 package com.example.model; public class G 阅读全文
posted @ 2020-08-28 12:01 gzhjj 阅读(1120) 评论(0) 推荐(0) 编辑
摘要: 4.创建Web Service客户端 使用wsimport创建客户端代码,它是JDK里面的可执行程序。 可根据本地WSDL文档创建客户端代码: 小结: 使用WSDL文档创建客户端代码。使用这些客户端代码即可访问远程服务。 参考: Creating a Simple Web Service and C 阅读全文
posted @ 2020-08-27 16:40 gzhjj 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1.Web Service概述 从概念上讲,服务是通过网络可访问端点提供的软件组件。 从技术上讲,Web服务可以以多种方式实现。 如万维网联盟(W3C)所述,Web服务提供了在各种平台和框架上运行的软件应用程序之间进行互操作的标准方法。 关于Web服务的几个概念: HTTP XML WSDL SOA 阅读全文
posted @ 2020-08-27 16:37 gzhjj 阅读(790) 评论(0) 推荐(0) 编辑
摘要: 1.XSLT on the Client @RequestMapping(value = "/XSLTClient") public String XSLTClient() { return "XSLTOnClient"; } <!-- XSLTOnClient.html --> <!DOCTYPE 阅读全文
posted @ 2020-08-21 11:58 gzhjj 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1.示例 cdcatalog.xml: <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?> <catalog> <cd> <title>Empire Burles 阅读全文
posted @ 2020-08-20 11:20 gzhjj 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1、变量提升 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style></style> <script src="js/jquery.min.js"></script> </head> <body> <s 阅读全文
posted @ 2020-08-13 17:12 gzhjj 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 1、使用IDEA创建SpringBoot项目 package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.Spri 阅读全文
posted @ 2020-07-27 15:18 gzhjj 阅读(3596) 评论(0) 推荐(0) 编辑
摘要: 1. JavaScript按位运算符 Bit operators work on 32 bits numbers. 2. JavaScript按位运算符~ 值得注意的是,在JavaScript中,~5的值是-6,而不是10。 The examples above uses 4 bits unsign 阅读全文
posted @ 2020-06-18 12:04 gzhjj 阅读(303) 评论(1) 推荐(0) 编辑
摘要: 1.HTTP Methods HTTP Methods GET POST PUT HEAD DELETE PATCH OPTIONS GET is used to request data from a specified resource. GET is one of the most commo 阅读全文
posted @ 2020-04-04 21:37 gzhjj 阅读(5033) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页