- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将我的 JBoss
服务器连接到一个新的 Postgres
数据库。
在 standalone.xml 中:
<driver name="postgresql" module="com.postgresql.pgjdbc">
<driver-class>org.postgresql.Driver</driver-class>
</driver>
在 module.xml 中:
<module xmlns="urn:jboss:module:1.1" name="com.postgresql.pgjdbc">
<resources>
<resource-root path="postgresql-9.3-1102.jdbc41.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
<module name="javax.transaction.api"/>
</dependencies>
</module>
启动 JBoss 时,我得到以下日志条目:
10:49:57,206 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 25) JBAS010404: Deploying non-JDBC-compliant driver class org.postgresql.Driver (version 9.3)
驱动程序似乎确实可以连接并工作。这种不合规的影响是什么?
最佳答案
根据这个 JBoss 论坛条目 none: Why is my JDBC4-compliant driver loaded as "non-JDBC-compliant"?
Because
org.postgresql.Driver#jdbcCompliant()
returns false. So you can ignore that for now, and I'm sure that the PostgreSQL JDBC people would like code contributions
和源代码:
/**
* Report whether the driver is a genuine JDBC compliant driver. A
* driver may only report "true" here if it passes the JDBC compliance
* tests, otherwise it is required to return false. JDBC compliance
* requires full support for the JDBC API and full support for SQL 92
* Entry Level.
*
* <p>For PostgreSQL, this is not yet possible, as we are not SQL92
* compliant (yet).
*/
public boolean jdbcCompliant()
{
return false;
}
https://github.com/pgjdbc/pgjdbc/blob/REL9_3_1102/org/postgresql/Driver.java.in
这是 TODO 列表的一部分 http://jdbc.postgresql.org/development/todo.html#Compliance
关于postgresql - JBoss 日志 Postgres 驱动是 "non-JDBC-compliant",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27108923/
我需要从我的 Android 应用程序中找到我网络中的 DLNA 兼容设备列表。 我正在使用来自 org.cybergarage 的 API。 它们在 Java 中可用,我想让它们支持 Android
所以我正在学习本教程,我终于弄清楚了如何使用 NSCoding 归档对象,以及如何使用可失败初始化器从文件系统再次初始化它。 // To encode the object in the first
我正在尝试使用 Python geojson 模块构建一个 GeoJSON 文件,该模块包含一个规则的二维点网格,其“属性”与地球物理变量(速度、温度等)相关联。该信息来自 netcdf 文件。 所以
假设您有一个来自您从外部资源加载的提要的更新元素列表,您知道您的 ADA 用户绝不会愿意听到他们的屏幕阅读器阅读这些内容。有没有一种方法我找不到让他们跳过该内容,甚至从屏幕阅读器可能看到的仍然符合 5
我在 C# 中有一个非常简单的模型类,具有 5 个自动属性 - 4 个 int 和一个 string public class MyModel { public int id { get;
使用 Dart 1,我能够在我的 pubspec.yaml 的转换器部分指定一些 dart2js 选项,特别是使生成的 JS CSP 兼容的选项: transformers: - $dart2js
下面是我的服务器套接字线程的run(),它将作为Executors.newWorkStealingPool().submit(() -> mainServer.run());运行code> 并接受客户
公共(public)语言规范对方法重载非常严格。 Methods are allowed to be overloaded only based on the number and types of
这个问题已经有答案了: Xcode - How to fix 'NSUnknownKeyException', reason: … this class is not key value coding
我是 CoreData 和 Restkit 的新手,遇到以下错误时遇到了很多麻烦。 我正在使用 restkit 来解析从 Foursquare 返回的一些地点。不幸的是我一直收到这个错误: 2013-
我使用 Interface Builder 创建了一个包含 XIB 文件和 UILabel 的类。 UILabel 与相应 .h 类中的 IBOutlet 链接。 我删除了 XIB 文件,但现在执行时
我或多或少是 iOS 开发的新手。 我下载了以下存储库以包含在我的项目中: https://github.com/nicklockwood/SwipeView 它包括一个水平分页 View ,并基于正
这可能是一个重复的问题,但我通过搜索互联网找到的解决方案都不会在 w3c 上验证。 我在托管公司的服务器上没有文档级别的精细控制,因此我需要在文档本身中包含 no-cache 指令。 HTML5 允许
更新:我决定重新开始,因为我还处于这个应用程序的早期阶段。我重复了所有内容,无论出于何种原因,自定义单元格都出现了第二次。我会保留旧文件以确认另一个答案,因为我想我不是唯一会遇到此问题的人。 我正在构
这个问题在这里已经有了答案: Xcode - How to fix 'NSUnknownKeyException', reason: … this class is not key value co
这个问题在这里已经有了答案: Xcode - How to fix 'NSUnknownKeyException', reason: … this class is not key value co
发现问题:无效的数据安全部分 我们在 Play 管理中心查看了您应用的数据安全部分,发现该部分与应用收集和共享用户数据的方式之间存在差异。所有应用都必须填写准确的数据安全部分,披露其数据收集和共享做法
我收到此消息: *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:f
我已将代码更新为在Xcode 9中快速运行4。在此之前,它可以正常工作。但是现在AVplayer崩溃了,下面是崩溃的代码。 addObserver(self, forKeyPath: "player.
编辑感谢马特的帖子,我现在明白我不应该尝试将“started”作为数组访问。但是,如果是这样的话,我想知道为什么这段代码似乎在其他地方工作。在我看来,这应该是“一个或另一个”。它应该起作用,或者不应该
我是一名优秀的程序员,十分优秀!