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>