Tutorial on java annotation Spring Boot
This article mainly introduces the key points of Spring Boot annotation learning (1). It is very good and has reference value. Friends who need it can refer to it
Annotations for declaring beans:
@Component, a bean without a clear role
@Service, uses
@Repository in the business logic layer (service), and uses
@Controller in the data access layer (dao), Use
@Configuration to declare the configuration class in the presentation layer
No need to add annotations to the entity class, because there is no need to "inject" the entity class
Specify the annotations of the Bean scope :
@Scope("prototype")
The default value is singleton
Optional values prototype, request, session, globalSession
Annotations for declaring the method of generating Bean:
@Bean is used on the method to tell the Spring container that you can get a Bean from the following method
Use the getBean method of the AnnotationApplicationContext object to obtain the Bean
Inject the annotation of the Bean:
@Autowired, automatic injection (default is byType type injection), can be used on attributes or methods. You can set required = "false" to indicate that it is not required to inject multiple implementations of the same interface, by @ qualifier distinguishes
When the injected variable is List and the latter Map, all interface implementations will be injected, Key is the name of the Bean, and value is the implementation class object. You can specify the loading order by adding @order=1 to the implementation class. The smaller the number, the priority is loaded
@Lazy starts delayed injection
Configuration class annotation:
@Configuration declares that the current class is a configuration class, which is equivalent to a xml file configured by Spring
@ComponentScan, which automatically scans all beans under the package name of the configuration class
@ EnableAutoConfiguration, start automatic configuration
In spring boot, these three annotations can be replaced by a @SpringBootApplication
@EnableTransactionManagement, enable transaction support
Transaction management:
@EnableTransactionManagement, added to the configuration class, enables transaction support
@Transactional, added to the Service method, marked as requiring transaction support
AOP annotations:
@AspectJ
Task Scheduling:
@Scheduled用在需要定时执行的方法上 @EnableScheduling用在需要使用的入口类上
Spring MVCIntegration:
First you need to modify the Application class
@SpringBootApplication @EnableTransactionManagement //1、添加继承SpringBootServletInitializer public class Application extends SpringBootServletInitializer{ public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override //2、重写configure方法 protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return super.configure(builder); } } Spring MVC的注解: @Controller,在展现层使用 @ResponseBody @RestController
[Related recommendations]
1. Special recommendation:"php "Programmer's Toolbox" V0.1 version download
3. JAVA Elementary Introduction Tutorial
The above is the detailed content of Tutorial on java annotation Spring Boot. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics
![Windows ISO file too large BootCamp error [Fixed]](https://img.php.cn/upload/article/000/887/227/170831702395455.jpg?x-oss-process=image/resize,m_fill,h_207,w_330)
If you get the error message "The Windows ISO file is too large" when using BootCampAssistant on a Mac computer, this may be because the ISO file size exceeds the limit supported by BootCampAssistant. The solution to this problem is to use other tools to compress the ISO file size to ensure that it can be processed in BootCamp Assistant. BootCampAssistant is a convenient tool provided by Apple for installing and running Windows operating system on Mac computers. It helps users set up a dual-boot system, allowing them to easily choose to use MacOS or Wind at startup

In 2023, AI technology has become a hot topic and has a huge impact on various industries, especially in the programming field. People are increasingly aware of the importance of AI technology, and the Spring community is no exception. With the continuous advancement of GenAI (General Artificial Intelligence) technology, it has become crucial and urgent to simplify the creation of applications with AI functions. Against this background, "SpringAI" emerged, aiming to simplify the process of developing AI functional applications, making it simple and intuitive and avoiding unnecessary complexity. Through "SpringAI", developers can more easily build applications with AI functions, making them easier to use and operate.

How to implement spring programmatic transactions: 1. Use TransactionTemplate; 2. Use TransactionCallback and TransactionCallbackWithoutResult; 3. Use Transactional annotations; 4. Use TransactionTemplate in combination with @Transactional; 5. Customize the transaction manager.

As an industry leader, Spring+AI provides leading solutions for various industries through its powerful, flexible API and advanced functions. In this topic, we will delve into the application examples of Spring+AI in various fields. Each case will show how Spring+AI meets specific needs, achieves goals, and extends these LESSONSLEARNED to a wider range of applications. I hope this topic can inspire you to understand and utilize the infinite possibilities of Spring+AI more deeply. The Spring framework has a history of more than 20 years in the field of software development, and it has been 10 years since the Spring Boot 1.0 version was released. Now, no one can dispute that Spring

Introduction: PHPDoc is a comment standard for PHP code that produces easy-to-understand and informative documentation. By using specific comment tags, PHPDoc allows developers to provide important details about functions, classes, methods, and other code elements. This advanced guide takes an in-depth look at PHPDoc, demonstrating its capabilities and providing effective documentation strategies. Syntax and tags: PHPDoc comments start with double slashes (//) or multi-line comments (/**/). Here are some common annotation tags: @param: Defines the parameters of a function or method. @return: Specifies the return value of the function or method. @throws: Describes exceptions that may be thrown by a function or method. @var: defines the attributes or instances of the class

Annotations in the JUnit framework are used to declare and configure test methods. The main annotations include: @Test (declaration of test methods), @Before (method run before the test method is executed), @After (method run after the test method is executed), @ BeforeClass (method that runs before all test methods are executed), @AfterClass (method that runs after all test methods are executed), these annotations help organize and simplify the test code, and improve the reliability of the test code by providing clear intentions and configurations. Readability and maintainability.

Annotations in the Jackson library control JSON serialization and deserialization: Serialization: @JsonIgnore: Ignore the property @JsonProperty: Specify the name @JsonGetter: Use the get method @JsonSetter: Use the set method Deserialization: @JsonIgnoreProperties: Ignore the property @ JsonProperty: Specify name @JsonCreator: Use constructor @JsonDeserialize: Custom logic

Detailed introduction to the usage of MyBatis annotation dynamic SQL MyBatis is a persistence layer framework that provides us with convenient persistence operations. In actual development, it is usually necessary to dynamically generate SQL statements based on business needs to achieve flexible data operations. MyBatis annotation dynamic SQL is designed to meet this demand.
