当前位置: 首页 > news >正文

如何提高网站访客数网站推广策划思路

如何提高网站访客数,网站推广策划思路,网站域名行业动态,百度热搜榜怎么打开创建react应用程序1.React式编程简介 React式编程是为具有以下特征的应用程序创造的术语#xff1a; 非阻塞应用 事件驱动和异步 需要少量线程来垂直扩展#xff08;即在JVM中#xff09; 就像面向对象的编程#xff0c;函数式编程或过程式编程一样#xff0c;React式… 创建react应用程序 1.React式编程简介 React式编程是为具有以下特征的应用程序创造的术语 非阻塞应用 事件驱动和异步 需要少量线程来垂直扩展即在JVM中 就像面向对象的编程函数式编程或过程式编程一样React式编程只是另一种编程范例。 它使我们的程序成为响应式弹性弹性。 2. Spring的React式编程 Spring框架在内部使用Reactor为其自身提供响应式支持。 Reactor是Reactive Streams发布程序在Java9中引入的实现。 Reactor具有以下两种数据类型 助焊剂它是一个可以发射0个或多个元素的流 单声道这是一个可以发出0或1个元素的流 Spring从其API公开这些类型从而使应用程序具有响应性。 在Spring5中引入了一个名为WebFlux的新模块该模块支持使用以下命令创建React式Web应用程序HTTPREST和Web套接字。 Spring Web Flux支持以下两种模型 功能模型 注释模型 在本文中我们将探讨功能模型。 下表比较了普通Spring和Web Flux 传统堆栈 React堆 Spring Web MVC SpringWebFlux 控制器和处理程序映射 路由器功能 Servlet API HTTP /React流 Servlet容器 任何支持Servlet 3.1 Tomcat 8.xJettyNettyUnderTow的servlet容器 3.用例 必须为员工管理系统创建一个使用Spring Web Flux的REST API该系统将对CRUD公开。 注意项目的DAO层是硬编码的。 4.所需的软件和环境 Java1.8以上 Maven3.3.9或更高 Eclipse Luna或以上 Sprint Boot2.0.0.M4 Spring Boot Starter WebFlux 邮递员测试应用程序 5.申请流程 Spring5 WebFlux的功能模型是使用Spring MVC样式注释的替代方法。 在Spring WebFlux功能模型中路由器和处理程序函数用于创建MVC应用程序.HTTP请求通过路由器函数路由替代RequestMapping注释请求通过处理函数 替代Controller处理程序方法进行处理。 每个处理程序函数都将ServerRequest org.springframework.web.reactive.function.server.ServerRequest 作为参数结果将返回MonoServerResponse或FluxServerResponse org.springframework.web.reactive.function.server.ServerResponse 。 6.用例代码和描述 pom.xml project xmlnshttp://maven.apache.org/POM/4.0.0 xmlns:xsihttp://www.w3.org/2001/XMLSchema-instancexsi:schemaLocationhttp://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsdmodelVersion4.0.0/modelVersiongroupIdcom.webflux/groupIdartifactIdDemo_Spring_MVC_Web_Flux/artifactIdversion0.0.1-SNAPSHOT/versionrepositoriesrepositoryidspring-snapshots/idnameSpring Snapshots/nameurlhttps://repo.spring.io/snapshot/urlsnapshotsenabledtrue/enabled/snapshots/repositoryrepositoryidspring-milestones/idnameSpring Milestones/nameurlhttps://repo.spring.io/milestone/urlsnapshotsenabledfalse/enabled/snapshots/repository/repositoriespluginRepositoriespluginRepositoryidspring-snapshots/idnameSpring Snapshots/nameurlhttps://repo.spring.io/snapshot/urlsnapshotsenabledtrue/enabled/snapshots/pluginRepositorypluginRepositoryidspring-milestones/idnameSpring Milestones/nameurlhttps://repo.spring.io/milestone/urlsnapshotsenabledfalse/enabled/snapshots/pluginRepository/pluginRepositoriesparentgroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-parent/artifactIdversion2.0.0.M4/versionrelativePath /!-- lookup parent from repository --/parentpropertiesproject.build.sourceEncodingUTF-8/project.build.sourceEncodingproject.reporting.outputEncodingUTF-8/project.reporting.outputEncoding!-- Configuring Java 8 for the Project --java.version1.8/java.version/properties!--Excluding Embedded tomcat to make use of the Netty Server--dependenciesdependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-web/artifactIdexclusionsexclusiongroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-tomcat/artifactId/exclusion/exclusions/dependencydependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-webflux/artifactId/dependency/dependenciesbuildpluginsplugingroupIdorg.springframework.boot/groupIdartifactIdspring-boot-maven-plugin/artifactId/plugin/plugins/build /project EmployeeDAO.java package com.webflux.dao; import java.util.LinkedHashMap; import java.util.Map; import org.springframework.stereotype.Repository; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; import com.webflux.bussiness.bean.Employee; Repository public class EmployeeDAO {/*** Map is used to Replace the Database * */static public Map mapOfEmloyeess new LinkedHashMap();static int count10004;static{mapOfEmloyeess.put(10001, new Employee(Jack,10001,12345.6,1001));mapOfEmloyeess.put(10002, new Employee(Justin,10002,12355.6,1002));mapOfEmloyeess.put(10003, new Employee(Eric,10003,12445.6,1003));}/*** Returns all the Existing Employees as Flux* */public Flux getAllEmployee(){return Flux.fromStream(mapOfEmloyeess.values().stream()); }/**Get Employee details using EmployeeId .* Returns a Mono response with Data if Employee is Found* Else returns a null* */public Mono getEmployeeDetailsById(int id){Monores null;Employee emp mapOfEmloyeess.get(id);if(emp!null){resMono.just(emp);}return res;}/**Create Employee details.* Returns a Mono response with auto-generated Id* */public Mono addEmployee(Employee employee){count;employee.setEmployeeId(count);mapOfEmloyeess.put(count, employee);return Mono.just(count);}/**Update the Employee details,* Receives the Employee Object and returns the updated Details* as Mono * */public Mono updateEmployee (Employee employee){mapOfEmloyeess.put(employee.getEmployeeId(), employee);return Mono.just(employee);}/**Delete the Employee details,* Receives the EmployeeID and returns the deleted employee Details* as Mono * */public Mono removeEmployee (int id){Employee emp mapOfEmloyeess.remove(id);return Mono.just(emp);} } 可以观察到 EmployeeDAO所有方法都返回Mono或Flux响应从而使DAO层处于活动状态。 EmployeeHandler.java package com.webflux.web.handler; import static org.springframework.web.reactive.function.BodyInserters.fromObject; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; import org.springframework.web.reactive.function.BodyExtractors; import org.springframework.web.reactive.function.server.ServerRequest; import org.springframework.web.reactive.function.server.ServerResponse; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; import com.webflux.bussiness.bean.Employee; import com.webflux.dao.EmployeeDAO; Controller public class EmployeeHandler {Autowiredprivate EmployeeDAO employeeDAO;/*** Receives a ServerRequest.* Invokes the method getAllEmployee() from EmployeeDAO.* Prepares a Mono and returns the same.* */ public Mono getEmployeeDetails(ServerRequest request) {Flux resemployeeDAO.getAllEmployee(); return ServerResponse.ok().contentType(MediaType.APPLICATION_JSON).body(res,Employee.class);}/*** Receives a ServerRequest.* Extracts the Path Variable (named id) from the Request.* Invokes the method [getEmployeeDetailsById()] from EmployeeDAO.* Verifies if the object returned in the previous step is null * then returns a Bad request with appropriate message.* Else Returns the Mono with the Employee Data.* */public Mono getEmployeeDetailByEmployeeId(ServerRequest request) {//Extracts the Path Variable id from the Requestint id Integer.parseInt(request.pathVariable(id));Mono employee employeeDAO.getEmployeeDetailsById(id);Mono res null;if(employeenull){resServerResponse.badRequest().body(fromObject(Please give a valid employee Id));}else{//Converting Mono of Mono type to Monoresemployee.flatMap(x-ServerResponse.ok().body(fromObject(x))); }return res;}/*** Receives a ServerRequest.* Makes use of BodyExtractors and Extracts the Employee Data as * Mono from the ServerRequest.* Invokes the method [addEmployee()] of the EmployeeDAO.* Prepares a Mono and returns the same. * */public Mono addEmployee(ServerRequest request) {Mono requestBodyMono request.body(BodyExtractors.toMono(Employee.class));Mono mono employeeDAO.addEmployee(requestBodyMono.block());//Converting Mono of Mono type to MonoMono res mono.flatMap(x-ServerResponse.ok().body(fromObject(Employee Created with Idx))); return res;}/*** Receives a ServerRequest.* Makes use of BodyExtractors and Extracts the Employee Data as * Mono from the ServerRequest.* Finds the Employee and updates the details by invoking updateEmployee() of * EmployeeDAO. * Prepares a Mono and returns the same.* */public Mono updateEmployee(ServerRequest request) {Mono requestBodyMono request.body(BodyExtractors.toMono(Employee.class));Employee employee requestBodyMono.block();Mono employeeRet employeeDAO.getEmployeeDetailsById(employee.getEmployeeId());Mono res null;if(employeeRetnull){resServerResponse.badRequest().body(fromObject(Please Give valid employee details to update));}else{Mono emp employeeDAO.updateEmployee(employee);//Converting Mono of Mono type to Monoresemp.flatMap(x-ServerResponse.ok().body(fromObject(x)));}return res; }/*** Receives a ServerRequest.* Makes use of BodyExtractors and Extracts the Employee Data as * Mono from the ServerRequest.* Finds the Employee and deletes the details by invoking removeEmployee() of * EmployeeDAO. * Prepares a Mono and returns the same.* */public Mono deleteEmployee(ServerRequest request) {int myId Integer.parseInt(request.pathVariable(id));Mono res null;if (employeeDAO.getEmployeeDetailsById(myId) null) {resServerResponse.badRequest().body(fromObject(Please Give valid employee details to delete));}else{Mono employee employeeDAO.removeEmployee(myId);//Converting Mono of Mono type to Monoresemployee.flatMap(x-ServerResponse.ok().body(fromObject(x))); }return res;} } 可以看出Handler的所有方法都返回MonoServerResponse 从而使表示层处于响应状态。 注意 事件处理程序方法应接受ServerRequest并返回MonoServerResponse RouterConfiguration.java package com.webflux.web.router.config; import static org.springframework.web.reactive.function.server.RequestPredicates.DELETE; import static org.springframework.web.reactive.function.server.RequestPredicates.GET; import static org.springframework.web.reactive.function.server.RequestPredicates.POST; import static org.springframework.web.reactive.function.server.RequestPredicates.PUT; import static org.springframework.web.reactive.function.server.RequestPredicates.accept; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.http.MediaType; import org.springframework.web.reactive.function.server.RouterFunction; import org.springframework.web.reactive.function.server.RouterFunctions; import org.springframework.web.reactive.function.server.ServerResponse; import com.webflux.web.handler.EmployeeHandler; Configuration /*** Router is configuration class.* It links the incoming requests with appropriate HTTP methods to the * respective method of the EmployeeHandler.* Method references are used for the mapping.* */ public class RouterConfiguration{AutowiredEmployeeHandler employeeHandler;Beanpublic RouterFunction monoRouterFunction() {RouterFunctionrouterFunction RouterFunctions. route(GET(/emp/controller/getDetails).and(accept(MediaType.APPLICATION_JSON)), employeeHandler::getEmployeeDetails).andRoute(GET(/emp/controller/getDetailsById/{id}).and(accept(MediaType.APPLICATION_JSON)), employeeHandler::getEmployeeDetailByEmployeeId).andRoute(POST(/emp/controller/addEmp).and(accept(MediaType.APPLICATION_JSON)), employeeHandler::addEmployee).andRoute(PUT(/emp/controller/updateEmp).and(accept(MediaType.APPLICATION_JSON)), employeeHandler::updateEmployee).andRoute(DELETE(/emp/controller/deleteEmp/{id}).and(accept(MediaType.APPLICATION_JSON)), employeeHandler::deleteEmployee);return routerFunction;} } ApplicationBootUp.java package com.webflux; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; SpringBootApplication public class ApplicationBootUp {public static void main(String[] args) {SpringApplication.run(ApplicationBootUp.class);}} 在application.properties内部仅提及服务器端口 server.port8090 。 可以使用以下命令部署应用程序 clean install spring-boot:run并使用postman client进行测试。 7.参考 https://docs.spring.io/spring/docs/5.0.0.BUILD-SNAPSHOT/spring-framework-reference/html/web-reactive.html http://www.baeldung.com/reactor-core http://www.baeldung.com/spring-5-functional-web 8.下载Eclipse项目 下载 您可以在此处下载此示例的完整源代码 SpringWebFlux 翻译自: https://www.javacodegeeks.com/2018/01/reactive-web-applications-using-springwebflux.html创建react应用程序
http://www.pierceye.com/news/463635/

相关文章:

  • wordpress 下载站插件wordpress清楚所有评论
  • 公司网站建设工作计划网站设置受信任
  • 网站如何做实名验证码深圳企业网站推广
  • 傻瓜式大型网站开发工具餐饮业手机php网站
  • 网站建设小细节图片东阳网站建设yw126
  • 为什么找不到做网站的软件怎么做音乐mp3下载网站
  • 做一个网站需要什么网络营销方式分析论文
  • 可以做3d电影网站企业网站优化应该怎么做
  • 中山做网站联系电话app客户端开发公司
  • 秦皇岛网站推广价钱南京建设网站制作
  • 2018钓鱼网站建设邢台seo公司
  • 深圳建设交易中心网站域名网站建设
  • 做网站色弱可以吗一个网址多少钱
  • 如何查询网站接入信息产品营销网站
  • 常用博客建站程序遂溪网站开发公司
  • 网站开发软件系统安徽通皖建设工程有限公司网站
  • 意派网站开发新手篇做平面常用的网站
  • 广州网站设计费用深圳室内设计师网
  • 有什么可以做兼职的网站吗建设网站的需求分析
  • 专门做进口产品的网站6wordpress赚钱方法
  • 长兴网站建设公司郫县城乡规划建设管理局网站
  • 天津建设工程信息网站搜索引擎推广是什么工作
  • 网站的系统建设方式网站建设报价表格
  • 商城展示网站建设我劝大家不要学android
  • 官网的建站过程云南网站建设营销
  • 那个网站上有打码的任务做台州做网站的公司
  • 做公司网站 需要注意什么汕尾市住房和城建设局网站
  • 建立音乐网站网络媒体设计是什么
  • html网站怎么进入后台网站建设完成之后要索取哪些
  • 做炭化料的网站国外可以做非法网站吗