spring cloud eureka service discovery registration

Environment description: spring boot 2.0 + JDK1.8 Step 1: Build the eureka server, create a maven project, or directly idea or https://start.spring.io/ Quick creation pom.xml file <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi ...

Posted by timgetback on Sat, 05 Oct 2019 23:55:00 -0700

Leakage of connection pool using druid

Links to the original text: https://blog.csdn.net/peterwanghao/article/details/40071857 Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is com.alibaba.druid.pool.GetCo ...

Posted by kaumilpatel on Sat, 05 Oct 2019 18:57:04 -0700

Knowledge Reasoning Machine Reproduction Based on jena

Knowledge inference machine reappearing Because csdn grammar support is different from github, you are welcome to visit the GitHub version of this article: https://github.com/JimXiongGM/KnowledgeBasedSearch/blob/master/ knowledge reasoning machine reappears.md Catalog mysql 8.0 preparation Installa ...

Posted by cowfish on Sat, 05 Oct 2019 17:32:53 -0700

rocketmq Source Parsing Sending Message Processor II

Said ahead Small Message Processor Source code analysis Return the method, create the topic configuration after sending the message, as described by org.apache.rocketmq.broker.topic.TopicConfigManager#createTopicInSendMessageBackMethod. Return method, storage of batch messages, introduced by org. apache ...

Posted by anakadote on Sat, 05 Oct 2019 16:27:38 -0700

How to write java multimedia file encoding and how to process tool class code

This article mainly introduces the use and analysis of java multimedia file coding and processing tool class. The example code is very detailed in this paper. It has certain reference value for everyone's study or work. Friends who need it can refer to it. Introduce <dependency> <groupId>org.apache.storm</groupId> ...

Posted by Celadon on Sat, 05 Oct 2019 14:56:01 -0700

Using fileupload Component to Implement File Upload for Java Web Learning Notes

file.jsp: <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> < title > file upload </title > </head> <body> <%-- To realize the file upload function in web development, we need to complete the following two st ...

Posted by micknc on Sat, 05 Oct 2019 11:36:15 -0700

Linux Service Control and Running Level

How to control the running state of the service? How to switch different levels of operation? service control ntsysv Imitating graphical interactive interface, centralized configuration of various service startup status level 35: Manage services at the specified runlevel, not just at the current runlevel. [root@localhost ~]# ntsysv --level ...

Posted by miha on Sat, 05 Oct 2019 10:53:10 -0700

spring cloud gateway source code parsing

1.gateway versus zuul 1.zuul is based on servlet 2.5 and compatible with servlet 3.0. It uses blocking API and does not support long connections such as websocket. 2.Gateway is based on spring 5, Reactor and spring boot 2. It uses non-blocking API, supports websocket, integrates perfectly with spri ...

Posted by noobyphpchick on Sat, 05 Oct 2019 10:21:41 -0700

Hello World: Introduction to dubbo

Links to the original text: http://www.cnblogs.com/JAYIT/p/9642389.html dubbo official documents: http://dubbo.apache.org/zh-cn/docs/user/quick-start.html demo based on spring coloud: http://start.dubbo.io The introduction of dubbo ...

Posted by acidglitter on Sat, 05 Oct 2019 08:51:21 -0700

Java: How SpringBook integrates with JSP

Catalog 1. Add JSP to IDE Adding JSP to JAR 3. Adding JSP to WAR Take Maven Project as an example to illustrate how to integrate JSP into SpringBook Project 1. Add JSP to IDE Add the following directory for placing jsp files src/main/webapp/WEB-INF/jsp maven configures pom.xml: <projec ...

Posted by SetToLoki on Sat, 05 Oct 2019 02:39:55 -0700