Learning log day47 (2021-09-13) (1, Maven 2, Create maven project through IDEA)
Learning Content: Learning Java Web (Day47)
1,Maven 2. Create maven projects through IDEA
1,Maven
(1) Project automation and project management software provided by the Apache Software Foundation. Based on the concept of Project Object Model (POM), Maven uses a central piece of information to manage the steps of building, reporting, and do ...
Posted by WebGeek182 on Mon, 13 Sep 2021 18:20:40 +0200
Summary of basic distributed of grain mall
@TOC
1.SPU and SKU
SPU (standardized product unit): similar to classes in java, that is, abstract
SKU (inventory unit): similar to an object, it has more specific values
Basic attribute (specification parameter): common attributes such as length.
Sales attribute: specific attributes
1. Shared specification parameters under classif ...
Posted by mausie on Sat, 11 Sep 2021 08:46:18 +0200
maven usage of Mybatis and springboot usage
Maven use
Create Maven project and add dependency in pom
<dependencies>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.6</version>
</dependency>
<dependency>
<groupId>junit</group ...
Posted by PURU on Mon, 06 Sep 2021 19:50:32 +0200
Spring Boot 2 learning notes: quick use -- HelloWorld project
1. Get started HelloWorld
1.1 system requirements
Java 8 uses java -version to view Maven 3.3 + viewing with mvn -v You must check the Maven version used in the idea, because the idea binds a maven 3 by default
1.2 create maven project and introduce dependency
<!--Introduce parent project for version control-->
<parent>
...
Posted by DeathStar on Thu, 02 Sep 2021 01:09:26 +0200
javaSpring uses maven's initial build step java project
1. Modify in maven projectPom.xmlIntroduce dependencies on spring.<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com ...
Posted by rockintyler on Sun, 05 Jul 2020 16:37:42 +0200
Hadoop source code compilation
No one has to help you. Everything has to be done by yourself
Hadoop source code compilation
preparation
(1) CentOS networking
Configure CentOS to connect to the Internet. Linux virtual machine ping is smooth
Note: use root role compilation to reduce the folder permissions
(2) jar package preparation (hadoop source code, JDK8, maven, ant, p ...
Posted by henryblake1979 on Tue, 30 Jun 2020 10:51:58 +0200
Spring cloud Part 5: fuse monitoring
Hystrix Dashboard is a real-time monitoring tool for hystrix. Through the Hystrix Dashboard, we can directly see the request response time, request success rate and other data of each Hystrix Command. But if you only use the Hystrix Dashboard, you can only see the service information in a single application, which is obviously not enough. We ne ...
Posted by madhu on Mon, 29 Jun 2020 06:47:29 +0200
Spring cloud Part 6: Spring Cloud Config Github
As distributed projects get bigger and bigger, hardworking programmers will begin to face a challenge, and configuration files will become more and more complicated, although spring provides a chicken rib solution, spring.profiles.active In the large-scale distributed project system, it's better than nothing. The pain of manual maintenance of c ...
Posted by michealholding on Mon, 29 Jun 2020 06:15:03 +0200
Why the jar of springboot can run independently
Welcome to my GitHub
https://github.com/zq2599/blog_demos
Content: all original articles are classified, summarized and matched source code, including Java, Docker, Kubernetes, DevOPS, etc;
jar files that can run independently
When developing spring boot applications, it is a common way to start app ...
Posted by php.ajax.coder on Sun, 28 Jun 2020 04:08:50 +0200
Android studio novice development: weather app (Baidu map api + wind weather api + city query + broken line display)
Android studio novice development: weather app (Baidu map api + wind weather api + city query + broken line display)
1. Content introduction
2. Environment configuration
3. Import another demo
4. AS project analysis
5. Weather project flow
6. Data exploration
7. Module architecture
8,sharedpreference
9. C ...
Posted by jej1216 on Sat, 27 Jun 2020 10:24:04 +0200