tomcat与mysql能直接连接吗,怎么连接,如果配置都设置好了,那下一步应该怎么做才算连接上了?
3个回答
展开全部
1. tomcat能正常启动了?
2. mysql 驱动安装了?(mysql connector,下载后街压缩然后把mysql-connector-binxxx.jar放到tomcat下面的lib下面去,这就算安装了)
3.如果这两部都好了,ok开始测试吧。
测试代码
test.jsp
<%@ pageEncoding="utf-8"%><%--这里"utf-8是指页码存储编码方式,如果有打开页码乱码换成gb2312应该可以解决"--%>
<%@ import="java.sql.*"%>
<%
try
{
Class.forname("con.mysql.jdbc.Driver")
Connection con=(Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/你的数据库名称", "root", "root的密码");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select * from user");
while(rs.next())
{
out.print(rs.getString(1));
}
catch(Exception ex)
{
ex.printStackTrace();
}
finally
{
try
{
if(rs!=null)
{
rs.close();
}
if(con!=null)
{
con.close();
}
}
catch(SQLException ex)
{
ex.printStackTrace();
}
}
%>
2. mysql 驱动安装了?(mysql connector,下载后街压缩然后把mysql-connector-binxxx.jar放到tomcat下面的lib下面去,这就算安装了)
3.如果这两部都好了,ok开始测试吧。
测试代码
test.jsp
<%@ pageEncoding="utf-8"%><%--这里"utf-8是指页码存储编码方式,如果有打开页码乱码换成gb2312应该可以解决"--%>
<%@ import="java.sql.*"%>
<%
try
{
Class.forname("con.mysql.jdbc.Driver")
Connection con=(Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/你的数据库名称", "root", "root的密码");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select * from user");
while(rs.next())
{
out.print(rs.getString(1));
}
catch(Exception ex)
{
ex.printStackTrace();
}
finally
{
try
{
if(rs!=null)
{
rs.close();
}
if(con!=null)
{
con.close();
}
}
catch(SQLException ex)
{
ex.printStackTrace();
}
}
%>
展开全部
配置MYSQL数据源Custom-WMS
在\tomcat6\tomcat6\conf下context.xml添加
<Context>
<Resource name="CustomDS"
auth="Container"
type="javax.sql.DataSource"
username="test"
password="password"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://192.168.1.100:3306/test"
maxActive="100"
maxIdle="30"
maxWait="5000"/>
</Context>
数据库服务器的地址是:192.168.1.100
数据库名是:test
用户名:test
密码:password
端口:3306
登陆字符集:gbk
放置MYSQL驱动
位置如:\tomcat6\tomcat6\lib下
在\tomcat6\tomcat6\conf下context.xml添加
<Context>
<Resource name="CustomDS"
auth="Container"
type="javax.sql.DataSource"
username="test"
password="password"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://192.168.1.100:3306/test"
maxActive="100"
maxIdle="30"
maxWait="5000"/>
</Context>
数据库服务器的地址是:192.168.1.100
数据库名是:test
用户名:test
密码:password
端口:3306
登陆字符集:gbk
放置MYSQL驱动
位置如:\tomcat6\tomcat6\lib下
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你先写一个控制台程序,学着连接数据库。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |