- 浏览: 149147 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
hekuilove:
楼主 介意把你的代码放到//代码 里么
JPA一对多,多对多映射 -
308202251:
[size=medium][/size][align=cent ...
usionCharts中文乱码问题 -
勇敢的核桃:
我日,从传~智~播~客上听来的东西原封不动的就转了。。人才!但 ...
搭建JPA开发环境和全局事务介绍 -
w156445045:
怎么使用啊?和log4j一样 写个配置文件还是?
谢谢~
slf4j-1.6.1.zip -
JavaStudyEye:
啥也不说了 很详细,谢谢分享,太好了
Struts2 + JQuery + Json 实例
1 下载Tomcat最新版本
下载地址:http://tomcat.apache.org/
2 下载mysql最新版本以及最近版本的驱动程序
下载地址:http://dev.mysql.com/downloads
http://dev.mysql.com/downloads/connector
并将下载的mysql-connector-java-5.1.0-bin.jar a连接文件放到$CATALINA_HOME/lib/下。
3 安装mysql数据库
4 创建一个tomcat应用程序,工程的名字为DBTest
5 修改$CATALINA_HOME/conf/ context.xml为以下内容
<Context path="/DBTest" docBase="DBTest"
debug="5" reloadable="true" crossContext="true">
<!-- maxActive: Maximum number of dB connections in pool. Make sure you configure your mysqld max_connections large enough to handle
all of your db connections. Set to 0 for no limit.
-->
<!-- maxIdle: Maximum number of idle dB connections to retain in pool.
Set to -1 for no limit. See also the DBCP documentation on this
and the minEvictableIdleTimeMillis configuration parameter.
-->
<!-- maxWait: Maximum time to wait for a dB connection to become available
in ms, in this example 10 seconds. An Exception is thrown if
this timeout is exceeded. Set to -1 to wait indefinitely.
-->
<!-- username and password: MySQL dB username and password for dB connections -->
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
-->
<!-- url: The JDBC connection url for connecting to your MySQL dB.
The autoReconnect=true argument to the url makes sure that the
mm.mysql JDBC Driver will automatically reconnect if mysqld closed the
connection. mysqld by default closes idle connections after 8 hours.
-->
<Resource name="jdbc/TestDB" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="javauser" password="javadude" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/ jtest?autoReconnect=true"/>
</Context>
此时要注意修改自己的数据库的用户名和密码
我建立的
数据库:jtest
用户名:javauser
密码:javadude
6 修改工程目录下的web.xml文件添加如下
<description>MySQL Test App</description>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
7 创建一个java类
package com.test;
/*
* DBTest.java
*
* Created on 2007/06/07, 10:33:02
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author wangzicai
*/
import javax.naming.*;
import javax.sql.*;
import java.sql.*;
public class DBTest {
String foo = "Not Connected";
int bar = -1;
public void init() {
try{
Context ctx = new InitialContext();
if(ctx == null )
throw new Exception("Boom - No Context");
DataSource ds =
(DataSource)ctx.lookup(
"java:comp/env/jdbc/TestDB");
if (ds != null) {
Connection conn = ds.getConnection();
if(conn != null) {
foo = "Got Connection "+conn.toString();
Statement stmt = conn.createStatement();
ResultSet rst =
stmt.executeQuery(
" select * from test ");
if(rst.next()) {
foo=rst.getString(1);
bar=208;
}
conn.close();
}
}
}catch(Exception e) {
e.printStackTrace();
}
}
public String getFoo() { return foo; }
public int getBar() { return bar;}
}
8 编辑index.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ page import ="com.test.*" %>
<html>
<head>
<title>DB Test</title>
</head>
<body>
<%
DBTest tst = new DBTest();
tst.init();
%>
<h2>Results</h2>
Foo <%= tst.getFoo() %><br>
Bar <%= tst.getBar() %>
</body>
</html>
9 部署测试
补充:要是能正确加载必须有mysql的jar包。你可以下载一个。然后就把jar包放到myeclipse的内置猫的lib文件夹下。这个文件夹是在你启动内置猫的时候控制台打印信息里面有那个路径(很好找,第二行左右很长的一行就是那个路径估计是bin,那lib和bin是在同一个路径下的)拷贝一下路径就可以找到那个lib。
下载地址:http://tomcat.apache.org/
2 下载mysql最新版本以及最近版本的驱动程序
下载地址:http://dev.mysql.com/downloads
http://dev.mysql.com/downloads/connector
并将下载的mysql-connector-java-5.1.0-bin.jar a连接文件放到$CATALINA_HOME/lib/下。
3 安装mysql数据库
4 创建一个tomcat应用程序,工程的名字为DBTest
5 修改$CATALINA_HOME/conf/ context.xml为以下内容
<Context path="/DBTest" docBase="DBTest"
debug="5" reloadable="true" crossContext="true">
<!-- maxActive: Maximum number of dB connections in pool. Make sure you configure your mysqld max_connections large enough to handle
all of your db connections. Set to 0 for no limit.
-->
<!-- maxIdle: Maximum number of idle dB connections to retain in pool.
Set to -1 for no limit. See also the DBCP documentation on this
and the minEvictableIdleTimeMillis configuration parameter.
-->
<!-- maxWait: Maximum time to wait for a dB connection to become available
in ms, in this example 10 seconds. An Exception is thrown if
this timeout is exceeded. Set to -1 to wait indefinitely.
-->
<!-- username and password: MySQL dB username and password for dB connections -->
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
-->
<!-- url: The JDBC connection url for connecting to your MySQL dB.
The autoReconnect=true argument to the url makes sure that the
mm.mysql JDBC Driver will automatically reconnect if mysqld closed the
connection. mysqld by default closes idle connections after 8 hours.
-->
<Resource name="jdbc/TestDB" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="javauser" password="javadude" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/ jtest?autoReconnect=true"/>
</Context>
此时要注意修改自己的数据库的用户名和密码
我建立的
数据库:jtest
用户名:javauser
密码:javadude
6 修改工程目录下的web.xml文件添加如下
<description>MySQL Test App</description>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
7 创建一个java类
package com.test;
/*
* DBTest.java
*
* Created on 2007/06/07, 10:33:02
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author wangzicai
*/
import javax.naming.*;
import javax.sql.*;
import java.sql.*;
public class DBTest {
String foo = "Not Connected";
int bar = -1;
public void init() {
try{
Context ctx = new InitialContext();
if(ctx == null )
throw new Exception("Boom - No Context");
DataSource ds =
(DataSource)ctx.lookup(
"java:comp/env/jdbc/TestDB");
if (ds != null) {
Connection conn = ds.getConnection();
if(conn != null) {
foo = "Got Connection "+conn.toString();
Statement stmt = conn.createStatement();
ResultSet rst =
stmt.executeQuery(
" select * from test ");
if(rst.next()) {
foo=rst.getString(1);
bar=208;
}
conn.close();
}
}
}catch(Exception e) {
e.printStackTrace();
}
}
public String getFoo() { return foo; }
public int getBar() { return bar;}
}
8 编辑index.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ page import ="com.test.*" %>
<html>
<head>
<title>DB Test</title>
</head>
<body>
<%
DBTest tst = new DBTest();
tst.init();
%>
<h2>Results</h2>
Foo <%= tst.getFoo() %><br>
Bar <%= tst.getBar() %>
</body>
</html>
9 部署测试
补充:要是能正确加载必须有mysql的jar包。你可以下载一个。然后就把jar包放到myeclipse的内置猫的lib文件夹下。这个文件夹是在你启动内置猫的时候控制台打印信息里面有那个路径(很好找,第二行左右很长的一行就是那个路径估计是bin,那lib和bin是在同一个路径下的)拷贝一下路径就可以找到那个lib。
发表评论
-
appfuse 安装笔记
2011-06-11 21:27 1996环境是maven 2.2.1 我 ... -
java.lang.ClassCastException:org.apache.catalina.util.DefaultAnnotationProcessor
2011-05-11 22:35 1417org.apache.jasper.JasperExcepti ... -
ValueStack
2011-04-28 09:33 4092在struts2中没有与servlet ... -
java中HashSet详解
2011-04-27 23:54 876HashSet 的实现 对于 HashSet 而言,它是基于 ... -
valuestack的工作原理(转)
2011-04-27 17:12 1211当访问一个action的时候,此时struts2会把整个act ... -
Struts 2杂谈(1):ValueStack对象的传送带机制
2011-04-27 10:57 815众所周知,Strut 2的Act ... -
跟我一步一步学struts2
2011-04-15 10:25 937一.Struts2概述 众所周 ... -
Struts in Action读书笔记
2011-04-12 22:59 2282转自 http://blog.csdn.net/Jiangc ... -
struts2中请求action错误与jsp请求错误处理
2011-02-18 16:05 1709在struts2中,若请求的XXX.action不存 ... -
在MyEclipse中安装Freemarker插件
2011-01-13 10:43 1160<转>在MyEclipse中安装Freemarke ... -
Struts2提交数组
2011-01-10 18:17 4675webwork表单提交中有一个很有用的技巧,在提交成组的类似p ... -
Struts2 类型转换 Type Convertion (转载)
2011-01-10 18:01 951HTTP协议中传递的任何内 ... -
struts2 xml 验证出现 Invalid field value for field 的解决方法(转)
2011-01-10 13:07 1359缺省情况下, 所有的装换错误使用通用的i18n信息 xwork ... -
Struts2 类型转换 Type Convertion (转载)
2011-01-10 10:02 808为什么会有类型转换? HTTP协议中传递的任何内容都是Stri ... -
Struts2使用拦截器完成权限控制示例
2011-01-06 23:01 1012示例需求: 要求用户登录,且必须为指定用户名才可以查看系 ... -
Struts2 访问request、session和application对象
2010-12-31 11:38 1176在传统的Web开发中,经常会用到Servlet API中的Ht ... -
java Struts2使用拦截器完成权限控制示例
2010-12-24 18:09 959Struts2使用拦截器完成权限控制示例 关键字: strut ... -
struts2 权限控制拦截器
2010-12-24 17:56 11441 实现权限控制拦截器 ... -
struts2 标签使用异常 The Struts dispatcher cannot be found.
2010-12-17 13:52 1300struts2 标签使用异常 The Struts disp ... -
调式struts时候遇到的问题总结
2010-12-17 13:52 10402010-12-17 14:04:23 com.opensym ...
相关推荐
总结来说,配置Tomcat 6.0、MyEclipse 6.0和MySQL 5.0数据库连接池的关键步骤包括: 1. 在`META-INF`目录下创建或修改`context.xml`,配置数据源。 2. 修改工程的`web.xml`,添加资源引用。 3. 将MySQL JDBC驱动的...
6. **性能优化**:为了提高性能,可以调整Tomcat的配置参数,例如增大JVM堆大小、启用连接池、减少日志级别等。这些参数通常在`conf/server.xml`和`conf/catalina.properties`文件中设定。 7. **故障排查**:当遇到...
1. **配置Tomcat连接池**: 在Tomcat 6.0中,推荐将数据库连接池的配置放在工程根目录下的`META-INF`文件夹中的`context.xml`文件中。这样做的好处在于,如果需要更换数据库连接池或调整配置,只需要修改这个文件...
在本文中,我们将详细探讨如何配置...总结,配置Tomcat 6.0+MyEclipse 6.0+MySQL 5.0的数据库连接池涉及创建和修改XML配置文件,以及确保驱动类库的可用性。正确配置后,你的应用就能高效、稳定地与数据库进行交互。
本篇将详细讲解如何在Tomcat6.0中,结合MyEclipse6.0集成开发环境以及MySQL5.0数据库,进行数据库连接池的配置。 首先,Tomcat6.0相较于早期版本在配置方面更加灵活,特别是数据库连接池的配置。一种常见的方式是...
将Apache Tomcat 6.0与MyEclipse结合使用,开发者可以方便地进行开发、测试和部署Java Web应用。以下是将Apache Tomcat 6.0集成到MyEclipse中的步骤: 1. **下载与安装**:首先,你需要从Apache官方网站下载Apache ...
5. **连接池**:TOMCAT 6.0引入了内置的数据库连接池(Apache Commons DBCP),可以在`conf/context.xml`中配置,提高数据库操作的性能。 6. **JNDI资源**:TOMCAT支持JNDI(Java Naming and Directory Interface)...
此外,还可以通过使用连接池、启用压缩和缓存等方式提升性能。 9. **日志和错误处理**:Tomcat的日志信息存储在logs目录下,包括catalina.out、host-manager、manager和localhost_access_log.*.txt等文件,帮助...
- **数据库连接池**:使用C3P0或DBCP等连接池管理数据库连接,提高系统性能。 综上所述,通过上述步骤可以成功搭建基于MyEclipse 5.5与Tomcat 6.0的开发平台,并实现界面汉化,为Java Web项目的开发提供了便利条件...
- **资源管理**:MyEclipse可以方便地管理Tomcat的服务器连接池、数据源等资源,简化了企业级应用的配置工作。 - **版本控制**:MyEclipse集成了版本控制系统,如Git,可以帮助团队协同开发和管理代码。 4. **...
在Java Web开发中,Tomcat连接池是一种管理数据库连接的有效方式,它可以提高应用程序的性能和效率。本篇文章将深入解析如何在Tomcat 6.0中配置数据库连接池,包括在JSP应用中使用和调用的方法。 首先,我们要创建`...
在本示例中,我们关注的是一个完整的数据库连接池应用,它结合了MyEclipse 6.6集成开发环境、Tomcat 6.0应用服务器以及SQL Server 2005数据库。这个应用提供了详细的讲解,可以帮助开发者更好地理解和应用数据库连接...
- 下载并安装proxool连接池类库。 7. 下载PureMVC组件 - 下载PureMVC框架的相关组件。 二、项目构建步骤 1. 新建Flex项目 - 在MyEclipse中创建一个新的Flex项目。 2. 引入MyEclipse Web类库和Spring框架 - 在...
这个源码是在MyEclipse+tomcat6.0环境下根据spring2.5+struts2+ibatis架构,数据库用的是Oracle,连接池用的是c3p0。因看到有些上传的资料让下载者不能够运行和使用,所以我自己用Oracle中自带的emp、dept还有一个...
接下来,实习生接触了更高级的技术,如Tomcat 6.0的数据库连接池配置,通过修改Context.xml和web.xml文件,以及编写数据库连接类来实现。此外,他们还学习了JSF技术,理解了JSF框架的基础概念。 进一步,实习生学习...
在 MyEclipse 中配置 Apache Tomcat 6.0 - 打开 MyEclipse,点击 Windows 菜单进入 Preferences。 - 进入 MyEclipse Servers 的 Tomcat 6.x 属性设置。 #### 6. MyEclipse Java Enterprise/Flex Development/...
首先,教程强调了在高版本的MyEclipse(如6.0和6.5)中进行SSH整合时可能出现的包冲突问题,并提供了最终的解决方案。整合过程中遇到的错误通常是由于不同库之间的不兼容性导致的,这可能需要仔细检查并调整所引入的...