Spring XML 配置文件模板
Jihongchang(讨论 | 贡献)2023年2月12日 (日) 06:14的版本 (建立内容为“<syntaxhighlight lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org…”的新页面)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="user01" class="io.github.jihch.boot.bean.User">
<property name="name" value="zhangsan"/>
<property name="name" value="18"/>
</bean>
</beans>