至于微信小程序的组件,即前端页面的开拓希望大家耐住寂寞负责在微信开拓平台上。

组件:

https://developers.weixin.qq.com/miniprogram/dev/component/

jsp网站开发小程序微信小法式开辟前端后端Java附完全源码 jQuery

api:

https://developers.weixin.qq.com/miniprogram/dev/api/

四、后端详解

我在后端编写紧张是用java,当然对其他开拓措辞熟习的也可以利用其他措辞开拓后端。
现在我就java编写后端api的讲解。
紧张框架springboot,开拓工具myeclipse,做事器阿里云做事器。

创建一个maven项目,导入干系依赖:

pom.xml依赖

<!-- 统一版本掌握 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> </parent> <dependencies> <!-- freemarker渲染页面 --> <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-freemarker --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency> <!-- spring boot 核心 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- springboot整合jsp --> <!-- tomcat 的支持. --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> </dependency> </dependencies>

在配置文件src/main/resources/下创建application.properties文件可以修正一些配置参数等。

#jsp支持spring.mvc.view.suffix=.jspspring.mvc.view.prefix=/WEB-INF/jsp/#this is set port#server.port=80server.port=443#添加ssl证书#ssl证书文件名server.ssl.key-store=classpath:xxxxxxx.pfxserver.ssl.key-store-password=xxxxxxxxserver.ssl.keyStoreType=xxxxxxxx

在实际项目中可能涉及数据库,还要整合mybatis,在文章中,我仅仅做测试就不做利用数据库的测试。

首先创建springboot的入口程序:app.class下面贴上代码

@ComponentScan(basePackages= "com.bin")//添加扫包@ComponentScan(basePackages= "")@EnableAutoConfigurationpublic class App{ //启动springboot public static void main(String[] args) { SpringApplication.run(App.class, args); }}

启动项目时直接右击run即可。

在写一个测试的controller进行微信小程序与java后端实现通信,controller代码如下:

@RestController@SpringBootApplicationpublic class ControllerText { @RequestMapping("getUser") public Map<String, Object> getUser(){ System.out.println("微信小程序正在调用。


"); Map<String, Object> map = new HashMap<String, Object>(); List<String> list = new ArrayList<String>(); list.add("zhangsan"); list.add("lisi"); list.add("wanger"); list.add("mazi"); map.put("list",list); System.out.println("微信小程序调用完成。


"); return map; } @RequestMapping("getWord") public Map<String, Object> getText(String word){ Map<String, Object> map = new HashMap<String, Object>(); String message = "我能力有限,不要难堪我"; if ("后来".equals(word)) { message="正在热映的后来的我们是刘若英的处女作。
"; }else if("微信小程序".equals(word)){ message= "想获取更多微信小程序干系知识,请更多的阅读微信官方文档,还有其他更多微信开拓干系的内容,学无止境。
"; }else if("西安工业大学".equals(word)){ message="西安工业大学(Xi'an Technological University)简称”西安工大“,位于天下历史名城古都西安,是中国西北地区唯一一以是兵工为特色,以工为主,理、文、经、管、法折衷发展的传授教化研究型大学。
原中华公民共和国兵器工业部直属的七所本科院校之一(“兵工七子”),陕西省重点培植的高水平传授教化研究型大学、陕西省公民政府与中国兵器工业集团、国防科技工业局共建高校、教诲部“卓越工程师教诲培养操持”试点高校、陕西省大学生创新能力培养综合改革试点学校。
国家二级保密资格单位,是一以是\"军民结合,寓军于民\"的国防科研高校。
"; } map.put("message", message); return map; } @RequestMapping("") public String getText(){ return "hello world"; }}

至此大略单纯的后端框架及测试基本完成。

解释:@RestController与@Controller表明的差异@RestController相称于两个表明,它能实现将后端得到的数据在前端页面(网页)中以json串的形式通报。
而微信小程序与后台之间的数据通报便是以json报文的形式通报。
以是这便是选择springboot框架开拓小程序后真个紧张缘故原由之一。
可以方面我们进行小程序的后端开拓。

五、小程序发起网络要求

在完成了小程序的后端开拓,下面进行小程序端发起网络要求。

下面以一个大略的按钮要求数据为例:

wxml文件

<button bindtap='houduanButton1'>点击发起要求</button><view wx:for="{{list}}"> 姓名:{{item}} </view>

js文件

/ 页面的初始数据 / data: { list: '', word: '', message:'' }, houduanButton1: function () { var that = this; wx.request({ url: 'http://localhost:443/getUser', method: 'GET', header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log(res.data)//打印到掌握台 var list = res.data.list; if (list == null) { var toastText = '数据获取失落败'; wx.showToast({ title: toastText, icon: '', duration: 2000 }); } else { that.setData({ list: list }) } } }) }

紧张调用的api便是wx.request,想知道将详细的先容大家可以去微信"大众平台(https://developers.weixin.qq.com/miniprogram/dev/api/)。

接下来以搜索类型的要求为例:

wxml文件:

<input type="text" class="houduanTab_input" placeholder="请输入你要查询的内容" bindinput='houduanTab_input'></input> <button bindtap='houduanButton2'>查询</button> <view wx:if="{{message!=''}}"> {{message}} </view>

js文件:变量的定义见上一个js文件

//获取输入框的内容 houduanTab_input: function (e) { this.setData({ word: e.detail.value }) }, // houduanButton2的网络要求 houduanButton2: function () { var that = this; wx.request({ url: 'http://localhost:443/getWord', data:{ word: that.data.word }, method: 'GET', header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log(res.data)//打印到掌握台 var message = res.data.message; if (message == null) { var toastText = '数据获取失落败'; wx.showToast({ title: toastText, icon: '', duration: 2000 }); } else { that.setData({ message: message }) } } }) }

至此已经完成了大略单纯的微信小程序端与java后端进行通信。

现在可以在启动后端项目在微信开拓工具上进行测试。

演示效果:

以是至此已经完成了小程序的前后端通信。

六、ps申请

实在也不算什么申请,在购买域名之后可以申请免费的ssl证书,在前面的配置文件application.properties中有证书的配置,将证书的pfx文件直接添加到后端项眼前即可。

七、购买做事器支配后端api代码

对付springboot项目,本人建议打jar,直接在做事器上支配即可,在做事器上只须要安装对应版本的jdk即可。
项目支配命令:

我购买的是阿里云的轻量级运用做事器支配的。
比较划算吧。

运行命令: nohup java -jar helloworld.jar &

nohup的意思不挂做事,常驻的意思,除非云做事看重启,那就没法了;末了一个&表示实行命令后要天生日志文件nohup.out,当然还可以利用java -jar helloworld.jar。

Redis字符串的实现

Redis虽然是用C措辞写的,但却没有直接用C措辞的字符串,而是自己实现了一套字符串。
目的便是为了提升速率,提升性能,可以看出Redis为了高性能也是挖空心思。

Redis构建了一个叫做大略动态字符串(Simple Dynamic String),简称SDS

1.SDS 代码构造

struct sdshdr{ // 记录已利用长度 int len; // 记录空闲未利用的长度 int free; // 字符数组 char[] buf;};

SDS ?什么鬼?可能对今生疏的朋友对这个名称有迷惑。
只是个名词而已不必在意,我们要重点欣赏借鉴Redis的设计思路。
下面画个图来解释,一览无余。

Redis的字符串也会遵守C措辞的字符串的实现规则,即末了一个字符为空字符。
然而这个空字符不会被打算在len里头。

2.SDS 动态扩展特点

SDS的最厉害最奇妙之处在于它的Dynamic。
动态变革长度。
举个例子

如上图所示刚开始s1 只有5个空闲位子,后面须要追加' world' 6个字符,很明显是不足的。
那咋办?Redis会做以下三个操作:

打算出大小是否足够开辟空间至知足所需大小开辟与已利用大小len相同长度的空闲free空间(如果len < 1M)开辟1M长度的空闲free空间(如果len >= 1M)

看到这儿为止有没有朋友以为这个实现跟Java的列表List实现有点类似呢?看完后面的会以为更像了。
Spring口试题分享

概述

对付 Spring和 SpringBoot到底有什么差异,我听到了很多答案,刚开始迈入学习 SpringBoot的我当时也是一头雾水,随着履历的积累、我逐步理解了这两个框架到底有什么差异,相信对付用了 SpringBoot良久的同学来说,还不是很理解 SpringBoot到底和 Spring有什么差异,看完文章中的比较,或许你有了不同的答案和意见!

什么是Spring

作为 Java开拓职员,大家都 Spring都不陌生,简而言之, Spring框架为开拓 Java运用程序供应了全面的根本架构支持。
它包含一些很好的功能,如依赖注入和开箱即用的模块,如:

SpringJDBC、SpringMVC、SpringSecurity、SpringAOP、SpringORM、SpringTest,这些模块缩短运用程序的开拓韶光,提高了运用开拓的效率例如,在 JavaWeb开拓的早期阶段,我们须要编写大量的代码来将记录插入到数据库中。
但是通过利用 SpringJDBC模块的 JDBCTemplate,我们可以将操作简化为几行代码。

什么是Spring Boot

SpringBoot基本上是 Spring框架的扩展,它肃清了设置 Spring运用程序所需的 XML配置,为更快,更高效的开拓生态系统铺平了道路。

SpringBoot中的一些特色:

1、创建独立的 Spring运用。
2、嵌入式 Tomcat、 Jetty、 Undertow容器(无需支配war文件)。
3、供应的 starters 简化构建配置4、尽可能自动配置 spring运用。
5、供应生产指标,例如指标、健壮检讨和外部化配置6、完备没有代码天生和 XML配置哀求

从配置剖析Maven依赖

首先,让我们看一下利用Spring创建Web运用程序所需的最小依赖项

<dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.1.0.RELEASE</version></dependency><dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.1.0.RELEASE</version></dependency>

与Spring不同,Spring Boot只须要一个依赖项来启动和运行Web运用程序:

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.0.6.RELEASE</version></dependency>

在进行构建期间,所有其他依赖项将自动添加到项目中。

另一个很好的例子便是测试库。
我们常日利用 SpringTest, JUnit, Hamcrest和 Mockito库。
在 Spring项目中,我们该当将所有这些库添加为依赖项。
但是在 SpringBoot中,我们只须要添加 spring-boot-starter-test依赖项来自动包含这些库。

Spring Boot为不同的Spring模块供应了许多依赖项。
一些最常用的是:

spring-boot-starter-data-jpaspring-boot-starter-securityspring-boot-starter-testspring-boot-starter-webspring-boot-starter-thymeleaf

有关 starter的完全列表,请查看Spring文档。

MVC配置

让我们来看一下 Spring和 SpringBoot创建 JSPWeb运用程序所需的配置。

Spring须要定义调度程序 servlet,映射和其他支持配置。
我们可以利用 web.xml 文件或 Initializer类来完成此操作:

public class MyWebAppInitializer implements WebApplicationInitializer { @Override public void onStartup(ServletContext container) { AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext(); context.setConfigLocation("com.pingfangushi"); container.addListener(new ContextLoaderListener(context)); ServletRegistration.Dynamic dispatcher = container .addServlet("dispatcher", new DispatcherServlet(context)); dispatcher.setLoadOnStartup(1); dispatcher.addMapping("/"); }}

还须要将 @EnableWebMvc注释添加到 @Configuration类,并定义一个视图解析器来解析从掌握器返回的视图:

@EnableWebMvc@Configurationpublic class ClientWebConfig implements WebMvcConfigurer { @Bean public ViewResolver viewResolver() { InternalResourceViewResolver bean = new InternalResourceViewResolver(); bean.setViewClass(JstlView.class); bean.setPrefix("/WEB-INF/view/"); bean.setSuffix(".jsp"); return bean; }}

再来看 SpringBoot一旦我们添加了 Web启动程序, SpringBoot只须要在 application配置文件中配置几个属性来完成如上操作:

spring.mvc.view.prefix=/WEB-INF/jsp/spring.mvc.view.suffix=.jsp

上面的所有Spring配置都是通过一个名为auto-configuration的过程添加 Bootweb starter来自动包含的。

这意味着 SpringBoot将查看运用程序中存在的依赖项,属性和 bean,并根据这些依赖项,对属性和 bean进行配置。
当然,如果我们想要添加自己的自定义配置,那么 SpringBoot自动配置将会退回。

配置模板引擎

现在我们来看下如何在Spring和Spring Boot中配置Thymeleaf模板引擎。

在 Spring中,我们须要为视图解析器添加 thymeleaf-spring5依赖项和一些配置:

@Configuration@EnableWebMvcpublic class MvcWebConfig implements WebMvcConfigurer { @Autowired private ApplicationContext applicationContext; @Bean public SpringResourceTemplateResolver templateResolver() { SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver(); templateResolver.setApplicationContext(applicationContext); templateResolver.setPrefix("/WEB-INF/views/"); templateResolver.setSuffix(".html"); return templateResolver; } @Bean public SpringTemplateEngine templateEngine() { SpringTemplateEngine templateEngine = new SpringTemplateEngine(); templateEngine.setTemplateResolver(templateResolver()); templateEngine.setEnableSpringELCompiler(true); return templateEngine; } @Override public void configureViewResolvers(ViewResolverRegistry registry) { ThymeleafViewResolver resolver = new ThymeleafViewResolver(); resolver.setTemplateEngine(templateEngine()); registry.viewResolver(resolver); }}

SpringBoot1X只须要 spring-boot-starter-thymeleaf的依赖项来启用 Web运用程序中的 Thymeleaf支持。
  但是由于 Thymeleaf3.0中的新功能,我们必须将 thymeleaf-layout-dialect 添加为 SpringBoot2XWeb运用程序中的依赖项。
配置好依赖,我们就可以将模板添加到 src/main/resources/templates文件夹中, SpringBoot将自动显示它们。

Spring Security 配置

为大略起见,我们利用框架默认的 HTTPBasic身份验证。
让我们首先看一下利用 Spring启用 Security所需的依赖关系和配置。

Spring首先须要依赖 spring-security-web和 spring-security-config 模块。
接下来, 我们须要添加一个扩展 WebSecurityConfigurerAdapter的类,并利用 @EnableWebSecurity表明:

@Configuration@EnableWebSecuritypublic class CustomWebSecurityConfigurerAdapter extends WebSecurityConfigurerAdapter { @Autowired public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { auth.inMemoryAuthentication() .withUser("admin") .password(passwordEncoder() .encode("password")) .authorities("ROLE_ADMIN"); } @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .anyRequest().authenticated() .and() .httpBasic(); } @Bean public PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); }}

这里我们利用 inMemoryAuthentication来设置身份验证。
同样, SpringBoot也须要这些依赖项才能使其事情。
但是我们只须要定义 spring-boot-starter-security的依赖关系,由于这会自动将所有干系的依赖项添加到类路径中。

SpringBoot中的安全配置与上面的相同 。

运用程序启动勾引配置

Spring和 SpringBoot中运用程序勾引的基本差异在于 servlet。
Spring利用 web.xml 或 SpringServletContainerInitializer作为其勾引入口点。
SpringBoot仅利用 Servlet3功能来勾引运用程序,下面让我们详细来理解下

Spring 勾引配置

Spring支持传统的 web.xml勾引办法以及最新的 Servlet3+方法。

配置 web.xml方法启动的步骤

Servlet容器(做事器)读取 web.xml

web.xml中定义的 DispatcherServlet由容器实例化

DispatcherServlet通过读取 WEB-INF/{servletName}-servlet.xml来创建 WebApplicationContext。
末了, DispatcherServlet注册在运用程序高下文中定义的 bean

利用 Servlet3+方法的 Spring启动步骤

容器搜索实现 ServletContainerInitializer的类并实行 SpringServletContainerInitializer找到实现所有类 WebApplicationInitializer``WebApplicationInitializer创建具有XML或高下文 @Configuration类 WebApplicationInitializer创建 DispatcherServlet与先前创建的高下文。

SpringBoot 勾引配置

Spring Boot运用程序的入口点是利用@SpringBootApplication注释的类

@SpringBootApplicationpublic class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); }}

默认情形下, SpringBoot利用嵌入式容器来运行运用程序。
在这种情形下, SpringBoot利用 publicstaticvoidmain入口点来启动嵌入式 Web做事器。
此外,它还卖力将 Servlet, Filter和 ServletContextInitializerbean从运用程序高下文绑定到嵌入式 servlet容器。
SpringBoot的另一个特性是它会自动扫描同一个包中的所有类或 Main类的子包中的组件。

SpringBoot供应了将其支配到外部容器的办法。
我们只须要扩展 SpringBootServletInitializer即可:

/ War支配 @author SanLi Created by 2689170096@qq.com on 2018/4/15 /public class ServletInitializer extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(Application.class); } @Override public void onStartup(ServletContext servletContext) throws ServletException { super.onStartup(servletContext); servletContext.addListener(new HttpSessionEventPublisher()); }}

这里外部 servlet容器查找在war包下的 META-INF文件夹下MANIFEST.MF文件中定义的 Main-class, SpringBootServletInitializer将卖力绑定 Servlet, Filter和 ServletContextInitializer。

打包和支配

末了,让我们看看如何打包和支配运用程序。
这两个框架都支持 Maven和 Gradle等通用包管理技能。
但是在支配方面,这些框架差异很大。
例如,Spring Boot Maven插件在 Maven中供应 SpringBoot支持。
它还许可打包可实行 jar或 war包并 就地运行运用程序。

在支配环境中 SpringBoot 比拟 Spring的一些优点包括:

1、供应嵌入式容器支持2、利用命令java -jar独立运行jar3、在外部容器中支配时,可以选择打消依赖关系以避免潜在的jar冲突4、支配时灵巧指定配置文件的选项5、用于集成测试的随机端口天生

结论

简而言之,我们可以说 SpringBoot只是 Spring本身的扩展,使开拓,测试和支配更加方便。
项目源码资料获取办法:关注小编+转发文章+私信【 666 】免费获取!


Java八股文口试资料获取办法:关注小编+转发文章+私信【 13 】免费获取!