blob: ed8b310d994ffcbb389ec3a9d5a4165d2215446f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.example.spring;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class App {
public static void main(String[] args) {
@SuppressWarnings({ "resource", "unused" })
ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[] {
"classpath:META-INF/spring/applicationContext.xml",});
}
}
|