如何使用Struts 2在Apache Tomcat的web.xml中创建MySQL数据库连接 [英] How to create MySQL database connection in web.xml of Apache Tomcat using Struts 2

查看:108
本文介绍了如何使用Struts 2在Apache Tomcat的web.xml中创建MySQL数据库连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在应用程序级别建立数据库连接,因此我想在Apache tomcat服务器的web.xml文件中创建连接.我正在使用Struts2 MVC框架开发我们的应用程序.实际上,我不想在每个Java文件中创建数据库连接.因此,请给我一个建议,如何在应用程序中建立数据库连接.

I want to make database connection at application level, so I want create connection in web.xml file of Apache tomcat server. I am developing our application using Struts2 MVC framework. Actually I don't want to create database connection at each Java file. So, please, give me a suggestion how to make a database connection in application.

我正在尝试在web.xml中创建连接,但在Connection conn = ds.getConnection();行显示了类似java.lang.NullPointerException的错误.所有代码都显示在下面

I am trying create a connection in web.xml but a error like java.lang.NullPointerException is being displayed at line Connection conn = ds.getConnection();. All code is being displayed in below

META-INFO/context.xml:

META-INFO/context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<Context>

<Resource name="jdbc/dbmy" auth="Container" type="javax.sql.DataSource"
           maxActive="50" maxIdle="30" maxWait="10000"
           username="root" password="mysql" 
           driverClassName="com.mysql.jdbc.Driver"
           url="jdbc:mysql://localhost:3306/dbmy"/>
</Context>

lib/web.xml:

lib/web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>MY</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
     org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
  </filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

<resource-ref>
<description>MySQL Datasource</description>
<res-ref-name>jdbc/dbmy</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>

我的Action类例如:

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import javax.annotation.Resource;
import javax.servlet.ServletContext;
import javax.sql.DataSource;

import com.opensymphony.xwork2.*;


public class GEtResponseObject extends ActionSupport {

/**
 * 
 */
private static final long serialVersionUID = 1L;
ServletContext context =null;
PreparedStatement ps =null;
ResultSet rs =null;


@Resource(name="jdbc/dbmy")
private DataSource ds;

public String execute() {       
 try{
     Connection conn = ds.getConnection(); //At this line, A java.lang.NullPointerException error is being occured.
     ps = conn.prepareStatement("select * from dbmy.mytable ");
     rs = ps.executeQuery();
     if (rs.next()) {
        System.out.println(rs.getString("mycolom"));
     }           
 }
 catch(SQLException e)
 {
      e.printStackTrace();       
 }      
  return Action.SUCCESS;
 }
}

推荐答案

放入

Putting @Resource on the action bean property makes no sense. If you need more information about injecting resources you should read a tutorial. Instead create a ServletContextListener and put annotation there. On context initialized event set context attribute

public class MyServletContextListener implements ServletContextListener {

  @Resource(name="jdbc/dbmy")
  private DataSource ds;

  @Override
  public void contextInitialized(ServletContextEvent servletContextEvent) {
    System.out.println("contextInitialized");
    ServletContext context = servletContextEvent.getServletContext();
    context.setAttribute("ds",ds);
  }

  @Override
  public void contextDestroyed(ServletContextEvent servletContextEvent) {
    System.out.println("contextDestroyed");

  }
}

web.xml(应位于WEB-INF中):

web.xml (should be in WEB-INF):

<listener>
  <listener-class>com.servlet.MyServletContextListener</listener-class>
</listener>

现在您可以在execute方法中获取数据源

now you can get datasource in the execute method

ds = (DataSource)ServletActionContext.getServletContext().getAttribute("ds");

这篇关于如何使用Struts 2在Apache Tomcat的web.xml中创建MySQL数据库连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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