- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
![out put from cf logs app-name --recent] 1我在基于后端的应用程序中开发了 spring/hibernate-MySQL。我已经在本地机器上成功测试了该应用程序。但是当我将应用程序上传到IBM bluemix时,当我访问service-->Dao方法时,到处都出现异常。它说 org.hibernate.exception.SQLGrammarException 声明类似于“SELECT 命令被拒绝给用户'username@75.126.83.16'。有趣的是,当我放置一个没有 Hibernate/spring Dao 的普通 JSP 但使用相同的连接字符串时,它可以工作.
Here is the spring-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="pojos" />
<bean id="adminService" class="pojos.AdminService">
<property name="adminDao" ref="adminDao" />
</bean>
.. Other Service class bean's info....
<bean id="adminDao" class="pojos.AdminDao">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="fieldOfficerDao" class="pojos.FieldOfficerDao">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="questionMasterDao" class="pojos.QuestionMasterDao">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
.. Other Dao class bean's info....
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingResources">
<list>
<value>pojos/Admin.hbm.xml </value>
... And other hbm files...
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.current_session_context_class">thread</prop>
</props>
</property>
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://192.155.247.251:3307/<DB-Name>" />
<property name="username" value="<DB-User-Name>" />
<property name="password" value="<DB-Password>" />
</bean>
<bean id="dbUtil"
class="pojos.DbUtil"
init-method="initialize">
<property name="dataSource" ref="dataSource" />
</bean>
最佳答案
我刚刚从每个 .hbm.xml 文件的类标记中删除了目录属性。该属性是可选的,它包含 MySQL 的架构名称。以前是这样的
<class name="pojos.Admin" table="admin" catalog="merca">
但现在是
<class name="pojos.Admin" table="admin">
关于mysql - bluemix 服务器在 MySQL 中给出 SQLGrammarException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32308594/
我是 Hibernate 新手。我正在尝试实现 OneToMany 和 ManyToOne 映射,同时执行 i 卡住和 SQLGrammarException。 这是类别 (pojo) 类。 pack
我创建了 2 个表:Bank 和 Branches。 我为这两个 POJO 创建了 DAO/BO 类和接口(interface)。 我使用注释映射了它们。 我正在使用 Hibernate 和 Spri
我想在 hibernate 状态下从 base 中删除列,其中我插入的 -regBroj- 参数与 base 中的参数相同。 这是我在 Controller 中删除的方法。但我经常得到SQL语法异常:
我正在执行 hql 查询,但收到一个我不太明白其原因的错误。我做了各种测试,错误似乎不是由我的离开表名引起的。我什至不能做一个简单的“离开”查询,我会收到同样的错误。但是,如果我将工作台数据库中的表重
我有一个数据库,其中有国家/地区表。国家/地区表具有以下结构。 CREATE TABLE `countries` ( `idCountry` int(5) NOT NULL AUTO_INCREM
实体类是: @Entity @Table(name = "movieDetail") public class MovieDetailImpl implements MovieDetail {
我正在使用 Apache Tomcat v9.0,当我运行简单的 MVC 项目时,我收到错误。 外星人级 @Entity(name="alien") public class Alien {
我正在尝试从给定特定用户和最大数量的数据库中获取一定数量的行。这是当前代码的样子: @Override public Collection findMaxByUser(User _user, int
我尝试取回实例 Criteria 中的元素列表。在执行中我得到了这个异常。有什么问题吗? 我的数据库名称是“TransPlusBD”。我的 table 的名字是“gerant”。但错误表明他(它)没有
当执行附带的代码时,我收到了一个 SQLGrammarException,没有进一步的解释。我正在对 mysql 数据库执行此代码。有人能理解这个查询有什么问题吗? public Patien
我有一张表,上面写着Book,其中只有一个column(book_id)作为Serial。我正在使用 Informix 和 openejb 4.7.2。当我尝试在数据库中创建新条目时,出现错误 Ope
我的代码导致 SQLGrammarException当我将空集设置为 SQL IN 参数时: Query query = this.entMngr.createNativeQuery("SELECT
编辑:通过更新所有导入的库(hibernate、postgresql 等)解决了问题。 我想通过 PostgreSQL 中的本地数据库服务器设置一个 hibernate 小应用程序。我提前创建了包含所
我有以下表格: stdqualificationmaster QualificationId studentRegNo CourseName Percentage 1 1
我无法获取结果,正在执行创建查询,但之后将其转换为列表无效。请帮我解决这个问题。为什么它没有被转换成列表我无法获取结果,正在执行创建查询,但之后将其转换为列表无效。请帮我解决这个问题。为什么它没有被转
您好,我在 postgresql 8.4 中使用 hibernate 运行示例,当我尝试添加它时会显示以下错误 org.hibernate.exception.SQLGrammarException:
![out put from cf logs app-name --recent] 1我在基于后端的应用程序中开发了 spring/hibernate-MySQL。我已经在本地机器上成功测试了该应用程
我正在使用 MySQL DB 开发 Spring MVC 应用程序。数据库中的两个表具有一对多关系。 其中一个表格是测验 @Entity @Table(name="Quiz", schema = "Q
我在两个表之间有一个 OneToMany/ManyToOne 关系。表 Partition 中有一个外键引用了 Event 的 id。当我调用 event.getPartitions() 时,它应该在
我正在调用一个函数,该函数试图检查我的 MYSQL 表中是否存在特定记录。 函数: public String get_value(long nodeid,String ts) {
我是一名优秀的程序员,十分优秀!