/
n1tron
/
practice09
Обзор
Документация
Войти
/
n1tron
/
practice09
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
step2/src/main/java/org/example/App.java
16 строк
474 B
RodinRoman
init
05 июн 2025, 11:10
05 июн 2025, 11:10
9526940
Код
Авторство
О чём код?
package org.example; import org.springframework.context.support.ClassPathXmlApplicationContext; public class App { public static void main( String[] args ) { ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("classpath:/context.xml"); System.out.println("Context loaded"); HelloWorldWriter writer = context.getBean(HelloWorldWriter.class); writer.write(); context.registerShutdownHook(); } }