To learn spring cloud, to install the Spring boot Spring-tool-suite plug-in, I installed in the first time, due to improper operation, two geniuses completely installed, really is dead, feel stupid to die! Below you have stepped on the pit and some tips to share with you. Installation method: (I used eclipse, so I took
Quick StartThe main objective of this chapter is to build the Spring Boot Foundation project and implement a simple HTTP request processing, which gives a preliminary understanding of spring boot and experiences its simple structure and rapid development.System Requirements:
Java 7 and above
genes.Spring Boot was born with spring 4.0, and literally understood that boot was meant to be guided, so spring boot was designed to help developers quickly build the spring framework. Sprin
Static resource accessWhen we develop Web applications, we need to reference a large number of JS, CSS, pictures and other static resources.Default configurationSpring boot defaults to provide a static resource directory location to be placed under Classpath, and the directory name must conform to the following rules:/static/public/resources/meta-inf/resourcesExample: We can create a static in the src/main/resources/directory, where a picture file is
whole business, it is some log or other auxiliary code. And many businesses need the same functionality, such as the need to log, it is necessary to copy the functions of these logging, even if it is packaged into a framework, but also need to call. Using complex design patterns here is not worth the candle.So we have to face the plane.3. Building AOPOriginally, Spring came with a set of AOP implementations, and we used this implementation directly,
For example, if we were to introduce support for Web MVC in spring boot, we would usually introduce this module spring-boot-starter-web, which, if unpacked, would find nothing in it and only defined some pom dependencies.After study, starter is mainly used to simplify the us
To understand the spring-boot of this technique, you should know Spring-boot's core profile application.properties, and of course you can customize the profile **.properties information through annotations.
I. Reading the contents of the core profile information Application.properties
A core profile is a application.properties or application.yml configuration fil
Spring Cloud FeignSpring Cloud Feign is a set of declarative service invocation clients based on the Netflix feign implementation. It makes writing Web service clients easier. We only need to configure it by creating an interface and using annotations to complete the binding to the Web service interface. It features pluggable annotation support, including feign annotations, Jax-rs annotations. It also supports pluggable encoders and decoders.
default all parameters of the method are combined (e.g.: @Cacheable (value= "user", key= "#username"))Value: The name of the cache, as defined in the spring configuration file, must specify at least one (for example: @Cacheable (value= "user") or @cacheable (value={"user1", "User2"})Condition: Cached condition, can be empty, written with Spel, returns TRUE or FALSE, only true for caching (such as: @Cacheab
Preparatory workFirst, build a simple Web project that you can use to add security controls later, or use the Chapter3-1-2 as a foundation project. If you are building a web app using spring boot, you can first read the article "Spring Boot Development web App".Web tier Implementation Request mapping@Controllerpublic c
We complete our example by creating a fully self-contained executable jar file that can be run in production env. An executable jar (sometimes called a "fat jars") is an archive file that contains the classes you compile and all the jar dependencies your code needs to run.This example continues on the basis of Spring Boot
after the install, and then Java-jar Xxx.jar mode can not start )
The target depends on the dependencies configuration:
Spring-boot-starter-web: Full stack Web development module with embedded tomcat, spring MVC
Spring-boot-starter-test: Generic t
1. Maven constructs spring Boot
Create a MAVEN Web project that introduces spring-boot-starter-parent dependencies
Using Spring-boot-starter-parent to build a spring
http://my.oschina.net/u/1027043/blog/406558The last chapter of a very simple entry-level spring boot example, no technical content, but, in fact, learn anything as long as the first breakthrough, the next thing is good to do, the most afraid of what? I think there is no way to do one thing, no place to start, and when you find this feeling, you can be very happy
directory @PropertySource
This annotation can specify a specific property configuration file with a lower priority. springapplication.setdefaultproperties
For example:
Springapplication application = new Springapplication (application.class);
map1 2 3 4 5 6 1 2 3 4 5-6
apply (use) Properties
@Value ("${xxx}")
This is the simplest way to inject attribute values through @value annotations. @ConfigurationProperties
packages are provided by the specific Spring Boot: \repository\org\springframework\boot\spring-boot-dependencies\ 2.0.1.release\spring-boot-dependencies-2.0.1.release.pom file to view,
Spring boot starts on the first day, see the example of @restcontroller ....The same point: both are used to indicate whether a class in spring can receive HTTP requestsDifferent points: @Controller identify a spring class that is a spri
1.Integration of timed tasks in spring bootIn the Startup class, add an annotation that opens a timed task:The use of timed tasks in Springboot is fairly straightforward. First, we add @enablescheduling to the startup class to open the timed task.@EnableScheduling Public class startapplication { publicstaticvoid main (string[] args) { Springapplication.run (startapplication. class , args);} }2. Then we directly create the se
)
Official document: Docs.spring.io/spring-data/jpa/docs/2.0.9.release/reference/html/#jpa. Repositories3.3 Custom SQL statement queries
For the user to write Sql,spring Boot JPA is also very good support, only need to add @query (SQL).
Example code:
@Transactional
@Modifying
@Query("update User set name=?1
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.