Baeldung 学习笔记
文章平均质量分 66
Baeldung专题学习笔记,通过一行一行英文复制的过程逐步理解原文的意思,也担心此网站后序无法访问,或者链接搬家导致的无法跟踪的情况,故记此笔记
张紫娃
这个作者很懒,什么都没留下…
展开
-
How to active Profiles in Spring
【代码】How to active Profiles in Spring。原创 2023-10-11 20:21:23 · 181 阅读 · 0 评论 -
How to get active Profiles in Spring
【代码】How to get active Profiles in Spring。原创 2023-10-11 20:08:18 · 337 阅读 · 0 评论 -
How to Set Profiles for Spring
and the profiles so that the respective beans are registered in the container.2. Programmatically via ConfigurableEnvironment3. Context Parameter in web.xml4. JVM System Parameter5. Environment Variable6. Maven Profile7. @ActiveProfile in Test原创 2023-10-11 20:03:19 · 285 阅读 · 1 评论 -
Spring @Autowired
参考:Wiring in Spring: @Autowired, @Resource and @InjectGuide to Spring @Autowired原创 2023-03-15 00:41:50 · 194 阅读 · 0 评论 -
Spring @Inject
【代码】Spring @Inject。原创 2023-03-15 21:09:38 · 159 阅读 · 0 评论 -
Spring @Conditional
Include a bean only if a specified class is using the annotationInclude a bean only if a specified class is using the annotation.Bean ConditionsInclude a only if a specified bean is use the annotations.Include a only if a specified bean is原创 2023-10-09 13:19:23 · 280 阅读 · 0 评论 -
多层次的类如何使用Jackson序列化/反序列化(Inheritance with Jackson)
如何在Jackson中使用类层次结构。原创 2023-08-05 13:45:20 · 289 阅读 · 0 评论 -
使用Jackson自定义序列化操作(Jackson – Custom Serializer)
【代码】使用Jackson自定义序列化操作(Jackson – Custom Serializer)原创 2023-08-04 22:47:01 · 454 阅读 · 0 评论 -
使用Jackson定制化某字段的序列化/反序列化(Jackson – Decide What Fields Get Serialized/Deserialized)
通过在getter上添加@JsonIgnore注释禁止该字段的序列化,通过在setter上应用@JsonProperty注释来启用该字段的反序列化。原创 2023-08-04 14:08:00 · 735 阅读 · 0 评论 -
Creating Custom Serializer or Deserializer
【代码】ObjectMapper常见用法(Intro to the Jackson ObjectMapper)原创 2023-08-03 23:54:03 · 1036 阅读 · 0 评论 -
使用Jackson自定义反序列化操作(Custom Deserialization in Jackson)
在上文ItemDeserializer的基础上。原创 2023-08-03 22:05:05 · 536 阅读 · 0 评论 -
Java中EnumMap常用方法
【代码】EnumMap(A Guide to EnumMap)原创 2023-08-03 20:42:44 · 256 阅读 · 0 评论 -
继承在枚举类中的应用
原因:combaeldungenumsextendenum。原创 2023-08-03 13:27:18 · 1074 阅读 · 0 评论 -
如何判断一个枚举值是否存在
【代码】如何判断一个枚举值是否存在(Check if an Enum Value Exists in Java)原创 2023-08-02 22:03:07 · 1538 阅读 · 0 评论 -
枚举类使用Jackson进行序列化与反序列化
发现:@JsonValue 优先级高于 @JsonFormat(shape = JsonFormat.Shape.OBJECT)原创 2023-08-02 21:09:55 · 1077 阅读 · 0 评论 -
枚举类常见用法(A Guide to Java Enums)
Java 5 引入枚举类, 详情可参考。原创 2023-08-02 00:44:48 · 499 阅读 · 0 评论 -
Constructor-Based DI in Spring
【代码】Constructor Dependency Injection in Spring。原创 2023-03-15 00:11:19 · 168 阅读 · 0 评论 -
什么是Java Bean,什么是Spring Bean?
在 Spring 中,构成应用程序主干并由Spring IoC容器管理的对象称为bean。bean是一个由Spring IoC容器实例化、组装和管理的对象。原创 2023-03-14 22:44:16 · 203 阅读 · 0 评论 -
Spring IoC (Inversion of Control)
【代码】Intro to Inversion of Control and Dependency Injection with Spring。原创 2023-03-15 00:34:25 · 201 阅读 · 0 评论 -
Getting the Current ApplicationContext in Spring
此文为Baeldung专题学习笔记,通过一行一行英文复制的过程逐步理解原文的意思,也担心此网站后序无法访问,或者链接搬家导致的无法跟踪的情况,故记此笔记。原创 2023-03-13 22:00:34 · 162 阅读 · 0 评论 -
Spring ApplicationContext
On the other hand, the ApplicationContext is a sub-interface of the BeanFactory. Therefore, it offers all the functionalities of BeanFactory.还添加了对国际化、资源访问、事件传播等方面的支持。BeanFactory 的实现是使用懒加载的方式,这意味着 beans 只有在我们通过 getBean() 方法直接调用它们时才进行实例化。原创 2023-03-14 22:22:57 · 216 阅读 · 0 评论 -
Create a Custom Auto-Configuration with Spring Boot
【代码】Create a Custom Auto-Configuration with Spring Boot。原创 2023-03-17 13:27:24 · 470 阅读 · 0 评论