Intelligent dialogue APP based on Aispeech -- external TTS engine and voice broadcast, setting speaker, setting speed and other functions

Intelligent dialogue APP based on Aispeech (4) -- external TTS engine and voice broadcast, setting speaker, setting speech speed and other functions 1, Problems and Solutions 2, External TTS engine 2.1 TTS engine 2.2 voice broadcast priority 2.3 stop broadcasting 2.4 setting up TTS engine 2.5 settin ...

Posted by menios on Sun, 28 Jun 2020 21:27:05 -0700

Deploying a hadoop cluster on Centos7

Hadoop's Trample Notes (1) Deploying a hadoop cluster on Centos7 Environmental Science Machine 1(hadoop1-ali) Ali Cloud (CentOS 7.3) 120.26.173.104 Machine 2(hadoop2-hw) Huawei Cloud (CentOS 7.4) 114.116.233.156 Where the first server serves as a namenode and the second serves as a datanode Modify hostname and hostfile Execute on two machines ...

Posted by maxxx on Sun, 28 Jun 2020 17:21:11 -0700

How Dubbo's XML is used and how it integrates with Spring

catalog How Dubbo's XML is used and how it integrates with Spring ServiceClassPostProcessor Implemented BeanDefinitionRegistryPostProcessor class How the bean instance of ServiceClassPostProcessor is injected into the container in advance. The definition of DubboNamespaceHandler, the parsing class ...

Posted by Kower on Sat, 27 Jun 2020 21:27:35 -0700

Ajax class notes

Ajax class notes jQuery simplifies js, mainly dom operation Find it (selector) Do it (dom operation method) selector Basic selector $("div") $("#div") $(".cls") Level selector $("div span"): a selector connected with spaces to find descendants $("div > span"): use t ...

Posted by nomanoma on Sat, 27 Jun 2020 18:55:02 -0700

ActiveMQ learning note 5 -- the transmission protocol of ActiveMQ

1. Introduction In the previous receiving ActiveMQ and code cases, you have configured: broker-url: tcp://192.168.106.131:61616 See the default protocol of ActiveMQ for TCP. However, ActiveMQ processing supports TCP thank you. It also supports client broker communication protocols: TCP, NIO, UDP, ...

Posted by bigger on Sat, 27 Jun 2020 02:27:07 -0700

Beauty of mybatis source code: 2.7. Analyze the plugins element to complete the configuration of mybatis plug-in

Parse the plugins element to complete the configuration of mybatis plug-in > Click to see the usage of the typeAliases element The plug-in mechanism of Mybtis is a very powerful function, which allows us to cut into the inside of Mybatis to perform some of the things we want to do during the operation of Mybatis. Page helper, a popular pagin ...

Posted by mistercoffee on Fri, 26 Jun 2020 20:44:20 -0700

Kotlin_RecyclerView_ Pull up refresh 1

For the basic implementation of RecyclerView, refer to the previous article: https://blog.csdn.net/whjk20/article/details/106950422 The reality is that the recycle view's pull-up refresh loads more. Basic implementation logic: the last entry has two statuses: one is prompt loading, the other is pro ...

Posted by jeroom on Fri, 26 Jun 2020 20:09:57 -0700

Android beauty group chooses cities

Demand: need to have the current positioning City, hot city, next according to the city Pinyin order, sliding process letters A,B,C They'll set the top and switch to each other. The right side has the choice of fast switching letter cities design sketch: Idea: because the upper part needs to be ...

Posted by gmann001 on Thu, 25 Jun 2020 21:02:48 -0700

Comprehensive analysis Service of Android components

preface Service is a solution to realize the background running of programs in Android, which is very suitable for performing tasks that do not need to interact with users and run for a long time. main points It depends on the application process in which the service is created, rather than running ...

Posted by clank on Thu, 25 Jun 2020 03:46:33 -0700

AOP of Spring core

What is AOP AOP (aspect oriented programming): aspect oriented programming is a complement to traditional object-oriented programming. What do you mean? For example, in the above figure, there are many identical function codes in different methods. Then we can extract these identical function codes an ...

Posted by poring on Thu, 25 Jun 2020 03:36:00 -0700