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

SpringBoot Downloads Excel Files to Solve File Damage

Recently, in making a module of springboot to download excel files, the downloaded files have been damaged all the time. A lot of solutions can't be found on the internet. The ink has been solved for half a day. The main reason is that the files in springboot's resource directory are automatically compr ...

Posted by lyasian on Sat, 05 Oct 2019 05:53:46 -0700

Java Operation Word Bookmarks: Add, Delete, Read Bookmarks

In Word, the bookmark function is often used to find, locate and mark specific characters or paragraphs. It is very practical for large documents. Next, we will introduce how to add and delete Word bookmarks through Java programs. Examples include: 1. Adding bookmarks 1.1 Bookmark the specified paragraph 1.2 Bookmark the specified string 2. ...

Posted by Emir on Sat, 05 Oct 2019 05:29:30 -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

Java Adding Watermarks to Word Documents

Watermarking is a kind of declaration and anti-counterfeiting means commonly used in various documents. Generally, text watermarking can be set or images can be loaded as watermarking. The following will share how to add watermarking effects to Word documents through Java programming, namely Text watermarking Picture watermarkUse Tools: Free ...

Posted by habanero25 on Fri, 04 Oct 2019 20:49:34 -0700

16. springcloud Integrates Swagger 2 to Build APIs for Restful Services

Public number: java paradise Spring Cloud registers services on Eureka. From Eureka's UI interface, you can see which services have been registered on Eureka Server. But if you want to see what RESTful interface methods the current service provides, you can't get them from Eureka Server. The traditional method is to sort out an interface docume ...

Posted by jim.davidson on Fri, 04 Oct 2019 18:34:44 -0700

Deploy Android Encapsulation Library to maven Private Servers via gradle and Depend on Use

1. Add the following sections to build.gradle under the module chrisbaselibrary that needs to be published //maven Plug-in unit apply plugin: 'maven' //Pack main Code and resource under directory task task androidSourcesJar(type: Jar) { classifier = 'sources' from android.sourceSets.main.java.srcDirs } //Configuration needs ...

Posted by dancing dragon on Fri, 04 Oct 2019 18:14:53 -0700

Create Spring Cloud Project (Service Registration and Discovery)

Create a registry 1. Create a maven project first: Go straight to the next step. 2. Create an eureka project: Then Click on the next step. Import dependencies in pom after project creation: (generally after project creation) <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven. ...

Posted by phpbeginer on Fri, 04 Oct 2019 03:03:39 -0700

Java reads text and images in PDF

This article will introduce the method of reading text and image in PDF document through Java program. The methods extractText() and extractImages() are called to read. Use tools: Free Spire.PDF for Java (free version)Jar file acquisition import:Method 1: Through the official website Download jar File package. After downloading, decompress the ...

Posted by moagrius on Fri, 04 Oct 2019 01:08:30 -0700

Docker deploys SpringBook project

Deploy springboot project on docker First, add the Docker image name to the pom.xml file of the springboot project: <properties> <docker.image.prefix>springboot</docker.image.prefix> </properties> Add docker to plugin to build plug-ins: <build> <plugins> <plu ...

Posted by yjanni on Fri, 04 Oct 2019 00:36:51 -0700