The process of integrating ActiveMQ with Spring Boot

Install the ActiveMQ server, (or not, if not, use memory mq) To build a Spring boot project and add dependencies, just add this one <!-- Add to acitivemq rely on --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> </dependency> A ...

Added by dspeer on Sun, 03 May 2020 07:28:24 +0300

Java data structure and algorithm (4) - linked list

Linked list is a kind of Physics Storage unit Upper discontinuous, non sequential storage structure ,data elements The logical order of is through the Pointer Link order. The list consists of a series of nodes (each element in the list is called a node), which can be generated dynamically at runtime. Each node ...

Added by loveitandhateit on Fri, 01 May 2020 00:58:31 +0300

java car rental system code

Sketch The first year of college. java car rental system code Operation result: Console: The above is the overall implementation effect. Analysis I store the car as an array: public class Car { String[ ] name = new String[50]; int[ ] state = new int[50]; String[ ] date=new String[50]; ...

Added by adrianl on Thu, 30 Apr 2020 22:58:10 +0300

Fastlane automated packaging notes

Install fastlane github warehouse: https://github.com/fastlane/fastlane fastlane official website: https://docs.fastlane.tools/ fastlane actions: https://docs.fastlane.tools/actions/ A configuration document: https://www.jianshu.com/p/0a113f754c09 Upload to dandelion: https://www.pgyer.com/doc/view/fastlane An example of a custom lanes group: h ...

Added by stc7outlaw on Thu, 30 Apr 2020 12:03:09 +0300

Handwritten MVC framework - example of using IOC alone

-------Previous: Handwritten MVC framework (two) - code implementation and use examples------ background I used the GMVC framework when developing the GMQ framework, and found some inconveniences in the process of using, which were also optimized. Currently, GMQ transmission is based on http transmission. I plan to use netty instead. Because my ...

Added by groovything on Sun, 12 Apr 2020 17:17:29 +0300

From the beginning to the end of the separation [Vue 2.0 +. Net core 2.1] 15 ║ Vue Foundation: JS object-oriented & literal & this word

origin Book to front< From the beginning of the front and back end separation [VUE 2.0 +. Net core 2.1] 14 ║ VUE plan & a brief history of my front and back end development >, yesterday we talked about several stages of web development experience explained by my experience, and also the knowledge points that Vue series need to tal ...

Added by classic on Sun, 12 Apr 2020 08:42:59 +0300

Recommendation for large table breakdown using gravity

gravity is a heterogeneous/isomorphic data replication channel software for Mobay bicycle ticketing, providing support for mainstream software and native k8s cloud.Better see its development. Project address: https://github.com/moiot/gravity Official documents: https://github.com/moiot/gravity/blob/master/docs/2.0/01-quick-start.md The comp ...

Added by Dev on Thu, 26 Mar 2020 19:51:25 +0200

Hexo Best Practice Recommendations

This practice is actually a directory operation specification that, ultimately for ease of use, requires personalized and frequently changing directories or files to be isolated, initialized with a simple Shell script, and upgraded with the NexT theme. Note: Summary from personal use may not be suitable for everyone, for reference only. <! ...

Added by jacksonpt on Wed, 25 Mar 2020 06:01:39 +0200

guava learning: observer mode

The observer pattern is a common behavioral design pattern.In the native implementation of Java, the Observer interface is implemented by the observer, and the Observable is inherited by the observer. Write a simple implementation using the Java api below. Observer code: public class MyObserver im ...

Added by manitoon on Tue, 17 Mar 2020 04:11:21 +0200

Can I create a remote warehouse on GitHub from CLI without opening a browser?

I created a new local Git Repository: ~$ mkdir projectname ~$ cd projectname ~$ git init ~$ touch file1 ~$ git add file1 ~$ git commit -m 'first commit' Is there any git command to create a new remote warehouse and push my submission to GitHub from there? I know to launch the browser and turn to Create a new repository It's no big deal, b ...

Added by info@ipfaces.org on Sun, 08 Mar 2020 12:19:42 +0200