小程序模板网

天河微信小程序入门《三》:打通任督二脉,前后台互通

发布时间:2018-03-29 18:27 所属栏目:小程序开发教程
天河君在申请到https证书后就第一时间去部署后台环境,但是发现每次访问https都要带上8443端口实在是很坑爹啊,作为一个强迫症晚期,我要做的自然是不带端口直接访问。
打开你tomcat下的conf文件夹,编辑里面的server.xml
  1. <Connector port="80" protocol="HTTP/1.1"
  2.                connectionTimeout="20000"
  3.                redirectPort="8443" />
  4.  
  5.     <!-- Define a SSL HTTP/1.1 Connector on port 8443
  6.          This connector uses the BIO implementation that requires the JSSE
  7.          style configuration. When using the APR/native implementation, the
  8.          OpenSSL style configuration is required as described in the APR/native
  9.          documentation -->
  10.  
  11.     <Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"
  12.                maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
  13.     keystoreFile="/usr/local/XRL/666666666666.pfx"
  14.     keystoreType="PKC666"
  15.     keystorePass="666666666666666"
  16.                clientAuth="false" sslProtocol="TLS" />
  17.  
  18.     <!-- Define an AJP 1.3 Connector on port 8009 -->
  19.     <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
复制代码
将以上内容中的8443替换成443,就是下面这样
  1. <Connector port="80" protocol="HTTP/1.1"
  2. connectionTimeout="20000"
  3. redirectPort="443" />
  4.  
  5. <!-- Define a SSL HTTP/1.1 Connector on port 443
  6. This connector uses the BIO implementation that requires the JSSE
  7. style configuration. When using the APR/native implementation, the
  8. OpenSSL style configuration is required as described in the APR/native
  9. documentation -->
  10.  
  11. <Connector port="443" protocol="org.apache.coyote.http11.Http11Protocol"
  12. maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
  13. keystoreFile="/usr/local/XRL/666666666666.pfx"
  14. keystoreType="PKC666"
  15. keystorePass="666666666666666"
  16. clientAuth="false" sslProtocol="TLS" />
  17.  
  18. <!-- Define an AJP 1.3 Connector on port 8009 -->
  19. <Connector port="8009" protocol="AJP/1.3" redirectPort="443" />
复制代码
当然注释内的不一定要改,还有就是不要复制粘贴我的,我的证书和你们的不一样。
这样改过后,再访问https://域名的时候,就不需要带端口号了。但是我还是觉得不爽啊,因为浏览器默认是访问http的地址,这样每次访问https我都需要将域名补全,作为一个强迫症晚期,我又要抓狂了。
打开你tomcat下的conf文件夹,编辑里面的web.xml
  1. </welcome-file-list>
复制代码
在上面两行标签之间添加(一般你没有改过web.xml的情况下,这是该文件最后两行代码)如下代码
  1. <login-config>
  2. <!-- Authorization setting for SSL -->
  3. <auth-method>CLIENT-CERT</auth-method>
  4. <realm-name>Client Cert Users-only Area</realm-name>
  5. </login-config>
  6. <security-constraint>
  7. <!-- Authorization setting for SSL -->
  8. <web-resource-collection >
  9. <web-resource-name >SSL</web-resource-name>
  10. <url-pattern>/*</url-pattern>
  11. </web-resource-collection>
  12. <user-data-constraint>
  13. <transport-guarantee>CONFIDENTIAL</transport-guarantee>
  14. </user-data-constraint>
  15. </security-constraint>
复制代码
这样当你访问http://的时候会自动跳转到https://上去。ok,至此,强迫症就好了一大半了,我们也可以开始写后台服务了。
至于连https证书都还没有搞定的同学,请移步(天河微信小程序入门《二》)
天河君之前是java狗,这次的后台也是用java部署的,用的是传统的web框架SSM,使用了极乐科技的一键部署工具。因为好久没有搭框架了,还好有这样的一键部署工具,不然又要一点点配置框架,简直是疯掉。一键生成SSM框架后,天河君就直接开始写业务代码了。嗯嗯~非常简单的代码:
  1. /**
  2.      * 获取系统时间。
  3.      * @return 获取系统时间。
  4.      * @author Sdanly
  5.      * @since 1.0
  6.      */
  7.         @ResponseBody
  8.         @RequestMapping(value=<span style="white-space: pre; line-height: 1.5;">"/getTime"</span><span style="line-height: 1.5;">, method=RequestMethod.GET)</span>
  9.         public Map<String, Object> getTime(HttpServletRequest req) {
  10.                 Map<String, Object> params = new HashMap<String, Object>();
  11.                 SimpleDateFormat time = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  12.                 params.put("time", time.format(new Timestamp(System.currentTimeMillis())));
  13.                 
  14.                 return params;
  15.         }
复制代码
是的,天河君只是想测试前后台的环境是通的,所谓欲练神功,先打通任督二脉嘛。
前台则是做了一个按钮,将后台传送上来的时间显示出来而已。demo会在文末提供下载(非常简单的demo,大家也可以尝试自己去做)
这个请求会返回一个name是"time",value是当前服务器时间的json串回来。获取之后显示在前台的页面就ok了。
Screenshot_2016-11-09-20-03-03.jpg
手机上的效果就是这样的。虽然很简单,但主要是为了证明前后台通讯正常嘛,也就没有写太复杂了。
后期天河在学习小程序制作的过程中,会写更多的后台调用服务,因为很多朋友都是纯前端,只是想学习小程序本身的开发,对后台的环境搭配等并不熟悉,也不感兴趣。所以天河在这里想公布后台的api和配置方法,如果有朋友只是想学习小程序前端的知识,可以直接调用api,不用去管后台的逻辑处理。按照我们约定好的借口接收数据就可以了。
后台的域名是https://api.wxapp-union.com,这个获取时间的api是getTime,在小程序中的调用方法是
  1. wx.request({
  2.       url: 'https://api.wxapp-union.com/getTime'
复制代码
返回的报文是
  1. {"time":"2016-11-09 20:22:47"}
复制代码
没有appId的朋友直接在开发工具上就可以调试,有appId的朋友,在你的后台开发设置中,将我们的域名写入服务器配置就可以了。
微信公众平台.png
这样就可以将后续的demo直接在手机上调试。如果大家有什么需求,或者想要的api接口和功能,都可以在原贴(wxapp-union.com)的下方提出来,天河君尽力帮大家开发。


 

 
 
 


易优小程序(企业版)+灵活api+前后代码开源 码云仓库:starfork
本文地址:https://www.eyoucms.com/wxmini/doc/course/22961.html 复制链接 如需定制请联系易优客服咨询:800182392 点击咨询
QQ在线咨询