<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="D:\myworkspace\jdmyerp(3-24)\jdmyerp\WebRoot"
workDir="D:\myworkspace\jdmyerp(3-24)\jdmyerp\WebRoot\work" reloadable="false">
<Resource name="jdbc/erp" auth="Container" type="javax.sql.DataSource"
maxActive="10000" maxIdle="3000" maxWait="10000"
username="root" password="root" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://127.0.0.1:3306/jdmyerp?autoReconnect=true&useUnicode=true&characterEncoding=utf-8&failOverReadOnly=false"/>
</Context>
</Host>
docBase,workDir这是写项目的保存路径
(把项目部署到Tomcat里有两种方式,一种是在server.xml里写配置代码<如上>,一种是把项目放在Tomcat里的webapps下面)
紫色头发:http://zisetoufa.iteye.com/
分享到:
相关推荐
总之,解决“Name jdbc is not bound in this Context”错误的关键在于正确配置数据源,并在Java代码中使用JNDI查找数据源以获取数据库连接。理解并熟练掌握这些步骤对于开发基于Java Web的应用程序来说至关重要。
Name salesDataSource is not bound in this Context,连接池的问题
"IDEA 中使用 ECJ 编译出现 java.lang.IllegalArgumentException 的错误问题解决方案" IDEA 是一个功能强大且功能丰富的集成开发环境,支持多种编程语言,包括 Java、Python、Ruby 等。ECJ(Eclipse Compiler for ...
`ArrayIndexOutOfBoundsException`是Java中常见的异常类型,表明尝试访问数组的一个不存在的索引。当试图访问的数组下标超过数组长度或者小于零时,就会抛出此异常。对于AXMLPrinter2.jar而言,这个错误可能出现在...
项目中碰到的问题
本文主要针对一个常见的配置错误——“Name jdbc is not bound in this Context”以及“Cannot create JDBC driver of class '' for connect URL 'null'”,进行深入分析并提供解决方案。 #### 错误现象及原因分析 ...
Returns the object bound with the specified name in this session, or null if no object is bound under the name. getAttributeNames() - Method in interface javax.servlet.ServletContext Returns an ...
10. 数据库连接池问题:`Name java: is not bound in this Context`可能是因为JNDI查找连接池时路径错误,需要检查数据源配置。 11. QueryRunner使用错误:`java.sql.SQLException: QueryRunner requires a ...
std::cout << "The first element in the vector that is not less than " << search_value << " is " *it ; } return 0; } ``` #### 四、分析与解释 1. **创建已排序的序列**:首先创建了一个已排序的`std::...
连续态束缚态(Bound States in the Continuum, BICs)是一种特殊的状态,它存在于能量连续谱中,但由于某些对称性或耦合机制,其能量态被有效地束缚,不会引起辐射损耗。在手性元表面中,BICs 的精确设计可以使元...
However, this is still my recommendation both for people who are learning Java and for those who are old pros and just want to catch up on what's new in the language. There are plenty of code ...
3. **`Name jdbc is not bound in this context`** - 解决方法:检查`web.xml`中的`res-ref-name`属性是否与`context.xml`或`server.xml`中的`name`属性相匹配。 #### 四、总结 通过以上两种方案,可以有效地配置...
### Lower_bound 函数详解 #### 一、Lower_bound 概述 `lower_bound`是C++标准库中的一个算法函数,通常被用于在一个有序区间内查找特定元素的第一个位置。此函数在`<algorithm>`头文件中定义。它返回的是一个指向...
- **错误3**: `Name jdbc is not bound in this context` - 解决方法:检查`web.xml`和`context.xml`中的配置是否一致,确保所有配置都正确无误。 #### 五、总结 通过以上步骤,我们可以在Tomcat6环境中成功配置...
在C++标准库中,`lower_bound`是一个非常重要的算法,它属于`<algorithm>`头文件。`lower_bound`函数主要用于排序序列,帮助我们找到一个指定值的第一个出现位置或者大于等于该值的第一个位置。这个函数在处理大量...
### Lower_bound函数详解 #### 一、概述 `lower_bound`函数是C++标准库中的一个强大工具,主要用于在已排序的容器(如数组、向量等)中查找指定元素的第一个出现位置。此函数返回一个迭代器,指向容器中第一个大于...
在给定的压缩包文件中,`bound.jar`可能是包含了实现Bound属性的JavaBean的类库,而`META-INF`目录则可能包含关于该jar文件的元数据,比如`MANIFEST.MF`文件,用于描述jar文件的版本、作者等信息。`com`和`src`目录...
6. **ERROR:javax.naming.NameNotFoundException: Name jdbc is not bound in this Context** 这个错误表明在当前环境中找不到指定的JDBC名称。需要检查并修正`server.xml`中的JNDI名称。 7. **严重:Exception ...