/
Diveloment
/
ClickSave
Обзор
Документация
Войти
/
Diveloment
/
ClickSave
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/altinntech/clicksave/ClickSaveConfiguration.java
19 строк
661 B
Fedor
fix(doc): fix author label in docs
24 апр 2024, 15:40
24 апр 2024, 15:40
d15b161
Код
Авторство
О чём код?
package com.altinntech.clicksave; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.thepavel.icomponent.InterfaceComponentScan; /** * The {@code ClickSaveConfiguration} class represents the configuration of the application. * It is annotated with Spring's {@code Configuration} annotation to indicate that it contains bean definitions. * It also uses {@code ComponentScan} to automatically register Spring beans within the specified packages. * * @author Fyodor Plotnikov */ @Configuration @ComponentScan @InterfaceComponentScan public class ClickSaveConfiguration { }