上一页 1 2 3 4 5 6 7 ··· 25 下一页
摘要: # Caching Spring Boot auto-configures the cache infrastructure as long as caching support is enabled by using the `@EnableCaching` annotation. ```java 阅读全文
posted @ 2023-07-17 22:48 测试开发刚哥 阅读(107) 评论(0) 推荐(0) 编辑
摘要: The Spring Framework provides extensive support for integrating with messaging systems, from simplified use of the JMS API using `JmsTemplate` to a co 阅读全文
posted @ 2023-07-17 22:48 测试开发刚哥 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Spring Boot integrates with a number of data technologies, both SQL and NoSQL. # SQL Databases [Spring Data](https://spring.io/projects/spring-data) p 阅读全文
posted @ 2023-07-17 22:48 测试开发刚哥 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Most web applications use the `spring-boot-starter-web` module to get up and running quickly. You can also choose to build reactive web applications b 阅读全文
posted @ 2023-07-17 22:47 测试开发刚哥 阅读(15) 评论(0) 推荐(0) 编辑
摘要: # SpringApplication By default, `INFO` logging messages are shown, including some relevant startup details, such as the user that launched the applica 阅读全文
posted @ 2023-07-17 22:47 测试开发刚哥 阅读(27) 评论(0) 推荐(0) 编辑
摘要: # Build Systems 选择Maven or Gradle,而不要Ant(not particularly well supported) In practice, you do not need to provide a **version** for any of these depen 阅读全文
posted @ 2023-07-12 10:10 测试开发刚哥 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Spring Boot helps you to create stand-alone, production-grade **Spring-based** applications that you can run. Most Spring Boot applications need **ver 阅读全文
posted @ 2023-07-11 12:42 测试开发刚哥 阅读(7) 评论(0) 推荐(0) 编辑
摘要: # Processing Data in Memory The Stream API is probably the second most important feature added to Java SE 8, after the lambda expressions. In a nutshe 阅读全文
posted @ 2023-07-07 21:53 测试开发刚哥 阅读(11) 评论(0) 推荐(0) 编辑
摘要: # Storing Data The Collections Framework is the most widely used API of the JDK. > 集合不是数据类型,它是JDK的API,可以用来存储数据等,相当于数据结构。 the Collections Framework is 阅读全文
posted @ 2023-07-01 22:44 测试开发刚哥 阅读(7) 评论(0) 推荐(0) 编辑
摘要: # Exception *Definition*: An *exception* is an event, which occurs during the execution of a program, that disrupts the normal flow of the program's i 阅读全文
posted @ 2023-06-19 20:15 测试开发刚哥 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 25 下一页