米子SSH之路(二) SSH的配置 (1) Spring2.5 - 编程入门网
* 它将引用处的上下文参数获得spring配置文件地址
* 指定Spring提供的ContextLoaderListener Web 容器监听器,
* 该监听器在web容器启动时自动运行并且根据ContextLoaderListener参数
* 获取Spring配置文件,并启动Spring容器。注意要将log4j.propertis放在
* 类目录下,以备目录引擎自动声效
************** -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-
class>
</listener>
</web-app>米子SSH之路(二) SSH的配置 (1) Spring2.5(4)时间:2011-11-02 BlogJava 米子2.3,在src下面新建 applicationContext.xml 米子SSH之路(二) SSH的配置 (1) Spring2.5(5)时间:2011-11-02 BlogJava 米子2.4 给applicationContext.xml 加上spring的标头 (注意结束符号</beans>) <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring- aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx -2.5.xsd"> </beans> 注意标头是2.5的 不要引入2.0, 错了可能Spring就不能正确加载。 2.5 引入spring2.5的包。 spring功能太强大,我们初学用不了那么多,所以只要引入我们需要的包就可以了。需要的时候再添 加。 把包复制到 /WEB-INFO/lib 文件夹下 2.6 测试Spring是否配置成功 2.6.1 在src下面我们新建一个包spring.test.hello (右单击src文件夹,new -> package ) 米子SSH之路(二) SSH的配置 (1) Spring2.5(6)时间:2011-11-02 BlogJava 米子2.6.2 在spring.test.hello下面新建两个java文件 UserPo.java, Hello.java (右单击 spring.test.hello 包,new->file) 2.6.3 修改UserPo.java, 代码如下 package spring.test.hello; public class UserPo { private String username; //用户呢称 private String sex; //性别 private int age; //岁数 public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } } 2.6.4 修改HelloTest.java 如下 package spring.test.hello; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class HelloTest { public static void main( String[] args ) { |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |