Files
snippets/spring-context.code-snippets
2025-04-17 15:56:06 +08:00

26 lines
1.3 KiB
Plaintext

{
"Spring XML Context": {
"prefix": "spring-xml-context",
"scope": "xml",
"body": [
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>",
"<beans xmlns=\"http://www.springframework.org/schema/beans\"",
"\txmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"",
"\txmlns:aop=\"http://www.springframework.org/schema/aop\"",
"\txmlns:tx=\"http://www.springframework.org/schema/tx\"",
"\txmlns:context=\"http://www.springframework.org/schema/context\"",
"\txsi:schemaLocation=\"http://www.springframework.org/schema/beans",
"\t\t\thttp://www.springframework.org/schema/beans/spring-beans-4.3.xsd",
"\t\t\thttp://www.springframework.org/schema/tx",
"\t\t\thttp://www.springframework.org/schema/tx/spring-tx-4.3.xsd",
"\t\t\thttp://www.springframework.org/schema/context",
"\t\t\thttp://www.springframework.org/schema/context/spring-context-4.3.xsd",
"\t\t\thttp://www.springframework.org/schema/aop",
"\t\t\thttp://www.springframework.org/schema/aop/spring-aop-4.3.xsd\">",
"",
"\t$1",
"</beans>",
],
"description": "Spring xml context template"
}
}