Introduction to Spring boot project construction
Preface
Spring Boot is a new framework provided by the Pivotal team, designed to simplify the initial build and development of new Spring applications. The framework uses a specific way to configure, so that developers no longer need to define templated configurations. In this way, Boot is committed to becoming a leader in the booming rapid a ...
Posted by patriklko on Fri, 28 Jun 2019 02:32:56 +0200
Handwritten Spring mvc framework
Handwritten Spring mvc framework
1. Dependency Management Tools
Maven,Gradle
Advantage:
Automated Management Dependency (jar package)
Resolve Dependency Conflicts
Packaging (mvn clean package)
Characteristic:
Contract greater than configuration
For example, src is the agreed code directory
The same project can have many modules, each bui ...
Posted by wazo00 on Thu, 20 Jun 2019 18:14:48 +0200
Spring Integrates Hessian and Analysis
Preface Last article Hessian's Beginning Experience and Analysis Introduces a simple introduction to hessian, and analyzes Hessian's call flow from the source level. It is found that using native Hessian is more cumbersome. Here's a look at Spring's integration with Hessian and a brief analysis.
Use Provides three simulation blocks to simulate ...
Posted by deadonarrival on Tue, 18 Jun 2019 19:05:47 +0200
Notes-JavaWeb Learning Tour 10
Servlet
The server applet runs a server-side applet, which is an interface that defines the rules that Java classes are accessed by the browser (Java classes override this interface and can be recognized by the browser (tomcat)
Servlet method:
Init method: Executes only once, and the init method is executed when the Servlet is first accessed ...
Posted by blunt on Sun, 09 Jun 2019 00:53:27 +0200
zabbix Foundation and Advancement (1) - zabbix Component Deployment
zabbix Foundation and Advancement (1) - zabbix Component Deployment
zabbix is a well-known distributed monitoring system.Supports the collection of zabbixagent data through the proxy server zabbix proxy, then saves the collection in the local database and sends it to the zabbix server for uniform storage and display.
Zabbix services w ...
Posted by LiveFree on Fri, 07 Jun 2019 20:06:17 +0200
Use of Ant in Eclipse
1. View the version of ant plug-in in eclipse
Enter the plugins folder in the eclipse installation directory to see the corresponding version of the ant plug-in (not only ant, but also other plug-in versions):
2. Demo-TestTomcat (using previous testTomcat projects)
Create a new build. XML in the root directory (name can be changed, but usu ...
Posted by fatmart on Sat, 18 May 2019 06:59:57 +0200
tomcat, httpd log format description
tomcat log description
Configuration file server.xml
The default log format is
pattern="%h %l %u %t "%r" %s %b"
Recommended use
pattern="%{X-FORWARDED-FOR}i %l %u %t %r %s %b %D %{User-Agent}i"
The log output is as follows
192.168.3.14 - - [14/Dec/2017:17:56:05 +0800] GET /solr/admin/cores?_=1513245362283&indexInfo=false& ...
Posted by irn3rd on Fri, 17 May 2019 09:33:37 +0200
SprinBook Basic Configuration
1. Tomcat configuration
These configurations are shown below. Refer to Appenddix A.Common application properties section for complete configurations.
II. HTTPS Configuration
Because of the security of HTTPS, HTTPS is often used in the development. For the individual developer, an HTTPS certificate is still very expensive. So ...
Posted by adamsca on Fri, 17 May 2019 08:36:05 +0200
Resolve slow start and connection timeout after Tomcat 8 or SpringBoot integration Tomcat 8 starts
After Tomcat 8 or SpringBook integration Tomcat 8 is started, the request connection has been timed out and there is no log output on the back end, as follows:
09:34:24.654 [main] INFO org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer - Tomcat started on port(s): 8888 (http)
09:34:24.658 [main] INFO com.wooooood ...
Posted by myflashstore on Tue, 14 May 2019 21:02:14 +0200
Deployment of tomcat and Jenkins
Introduction to tomcat
Tomcat is a core project of Apache Software Foundation's Jakarta project. It is developed by Apache, Sun and other companies and individuals. Tomcat server is a free open source web application server, belonging to lightweight application server. JSP development and debugging is widely used in small and ...
Posted by papapax on Sun, 12 May 2019 04:08:58 +0200