myeclipse如何与postgresql9.1连接
2个回答
2015-12-21 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
myeclipse中通过配置tomcat数据源与postgres9.1连接。
1、设置tomcat连接池了,先把tomcat目录下的 /tomcat/conf/server.xml 打开,
找到<Context>标签,在它下层加入下面代码:
<Resource name="jdbc/test"
url="jdbc:postgresql://localhost:5432/testdb"
username="happy"
password="world"
auth="Container"
type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
driverClassName="org.postgresql.Driver" />
2、在工程的发布配置文件web.xml注册 :
在<webapps>标签里 加入
<description>postgresql conn pool</description>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
1、设置tomcat连接池了,先把tomcat目录下的 /tomcat/conf/server.xml 打开,
找到<Context>标签,在它下层加入下面代码:
<Resource name="jdbc/test"
url="jdbc:postgresql://localhost:5432/testdb"
username="happy"
password="world"
auth="Container"
type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
driverClassName="org.postgresql.Driver" />
2、在工程的发布配置文件web.xml注册 :
在<webapps>标签里 加入
<description>postgresql conn pool</description>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
展开全部
呵呵 仁兄也使用pgsql啊
首先要有驱动jar ,项目里面 这么着
dataSource.driverClassName=org.postgresql.Driver
dataSource.url=jdbc:postgresql://127.0.0.1/db_converse
dataSource.username=user_converse
dataSource.password=user_converse1234
上面参数的意思不要我解释了吧
首先要有驱动jar ,项目里面 这么着
dataSource.driverClassName=org.postgresql.Driver
dataSource.url=jdbc:postgresql://127.0.0.1/db_converse
dataSource.username=user_converse
dataSource.password=user_converse1234
上面参数的意思不要我解释了吧
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询