将spring bean加载到servlet中 [英] load spring bean into a servlet

查看:97
本文介绍了将spring bean加载到servlet中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

关于如何完成此任务有很多文件,但我仍无法解决我的问题。我刚开始使用servlet,所以我可能错过了一些东西。

There are many documentations out there on how to achieve this task but I still couldn't resolve my issue. I'm new to working with servlet so I probably missed something.

我使用red5使用tomcat 6来创建一个使用Spring bean的mysql,这是一个MysqlDb类的对于数据库操作。

I use red5 that uses tomcat 6 to create a servlet that uses a spring bean that's of a MysqlDb class for database manipulations.

当我使用端口5080指向red5时,它充当常规tomcat服务器,我可以浏览jsp和servlet页面。

when I point to red5 using port 5080 it acts as a regular tomcat server and i can browse jsp and servlet pages.

我的web.xml包含以下相关信息:

my web.xml contains the following relevant information:

<listener>
 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<servlet>
  <servlet-name>fbauth</servlet-name>
  <servlet-class>com.xpogames.FbAuth</servlet-class>
</servlet>

<servlet-mapping>
  <servlet-name>fbauth</servlet-name>
  <url-pattern>/fbauth</url-pattern>
</servlet-mapping>

我的applicationContext.xml:

my applicationContext.xml:

<?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="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="/WEB-INF/red5-web.properties" />
</bean>

<bean id="idDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName"><value>${db.driver}</value></property>
    <property name="url"><value>${db.url}</value></property>
    <property name="username"><value>${db.username}</value></property>
    <property name="password"><value>${db.password}</value></property>
    <property name="poolPreparedStatements"><value>true</value></property>
    <property name="maxActive"><value>10</value></property>
    <property name="maxIdle"><value>10</value></property>
 </bean>

 <bean id="MysqlDb" class="com.xpogames.MysqlDb">
    <property name="idDataSource" ref="idDataSource"/>
 </bean>


</beans>

我的FbAuth servlet:

my FbAuth servlet:

package com .xpogames;

package com.xpogames;

import java.io.IOException;

import java.io.PrintWriter;


import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

public class FbAuth extends HttpServlet {
private static final long serialVersionUID = 1L;

public FbAuth() {
    super();
    // TODO Auto-generated constructor stub
}

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    PrintWriter out = response.getWriter();
    WebApplicationContext webApplicationContext = WebApplicationContextUtils.getRequiredWebApplicationContext(request.getSession().getServletContext());
    MysqlDb mysqlDb = (MysqlDb)webApplicationContext.getBean("MysqlDb");
    out.println(mysqlDb.testme());
    out.println("Hello, world!");
    out.close();        
}

}

我收到以下错误:

java.lang.IllegalStateException: Context attribute is not of type WebApplicationContext

我想我没有正确地获取春豆。

I think I'm not fetching the spring bean correctly.

任何想法?

谢谢!

这是我的新init函数:

this is my new init function:

public void init(ServletConfig config) throws ServletException {
    super.init(config);
     ServletContext servletContext = this.getServletContext();
    this._context = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
}

非常感谢! :)

推荐答案

我在servlet的init()方法中使用以下内容。 init()方法在Servlets生命周期中只调用一次。

I use the following in the init() method of the servlet. The init() method is called only once in a Servlets lifecycle.

ApplicationContext context = 
    WebApplicationContextUtils.getRequiredWebApplicationContext(
        this.getServletContext());

另外,你的web.xml中有contextConfigLocation吗?

Also, do you have the "contextConfigLocation" in your web.xml?

<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:/**/spring-config.xml
        </param-value>
 </context-param>

这篇关于将spring bean加载到servlet中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆