0
votes
1answer
32 views

No JDBC Driver class was specified by property hibernate.connection.driver_class

With this Pom.xml: <!-- Hibernate resources --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> ...
0
votes
1answer
45 views

cannot load the oracle driver

hey guys one more question following is the informations tell me in comments if more info is needed INFO: Destroying singletons in ...
0
votes
1answer
30 views

integrate spring security 3.1 with existing app

I want to integrate spring security in my application. The users'information is saved in an Oracle DB where the passwords are encoded with md5. I tried this at first but it didn't work : <bean ...
0
votes
0answers
40 views

Spring MySql Datasource null

I'm attempting to connect to my MySQL server through Spring using an injected DataSource, but the DataSource is always null once the DAO class is reached. Here is my springapp config file: <?xml ...
-4
votes
0answers
66 views

Why should I use a MVC framework for my web application? [closed]

I have a relatively small web application of which my back-end is comprised solely of JSPs and a few Servlets making DB calls via JDBC. Some have suggested using a more sophisticated MVC back-end ...
0
votes
1answer
25 views

Bean definition is abstract Error on a Standalone Java application

Im trying to create a ParentDao that will handle all the connection details for my Standalone Java application. When I run my program I get the Error below Exception in thread "main" ...
0
votes
1answer
35 views

JDBC spring datasource declaration

Why doesn't this work (throws exception: Cannot create JDBC driver of class '' for connect URL 'null')? public class Test { public static BasicDataSource dataSource = new BasicDataSource(); ...
3
votes
1answer
79 views

How to pass BigInteger from java to Postgres?

I need to pass a BigInteger argument to SQL query. (on Postgres 9.2) I have this code in my DAO: public List<PersonInfo> select(String id) { BigInteger bigIntId = new ...
0
votes
0answers
21 views

Confusing 'Partial' ResultSet fetching

During code review i found a bit unusual way how to fetch results from DB. We have large table (>10^6 rows) where we run overnight job. I understand following reasons : performance is good as we ...
0
votes
1answer
92 views

DB Connection Leak in Item Reader when using AsyncTaskExecutor

In the spring batch job that we have developed we are using the AsyncTaskExecutor, to allow for parallel processing at a step level. We have the concurrency limit set as 5. We use the ...
0
votes
0answers
38 views

Commit after each transaction with JDBCTemplate and DataSourceTransactionManager [closed]

I am running an application to send emails and then update a record in a database to indicate the email has been sent. When I run the application from start to finish - everything works fine. When I ...
0
votes
1answer
66 views

Spring @Transactional and JDBC autoCommit

On my actual application, I have a DBCP connection pool which doesn't have JDBC autoCommit=false set. It seems to have the default autoCommit=true. This is probably a mistake but I'd like to ...
0
votes
1answer
103 views

How to insert an ArrayList of String into database using SqlParameterSource

I want to insert the contents of a Person bean into my database table person using Spring's SqlParameterSource. One of the attributes in Person class is an a java.util.List which is causing ...
0
votes
1answer
94 views

Spring JDBC - Bulk insert targeting multiple tables

Using JDBC (Oracle), I need to insert thousands of rows to three different tables. Basically, I want to execute 3 insert SQL statement, one after the other, in a loop. I read this link and I would ...
2
votes
1answer
147 views

How can I print SQL query result log with log4j?

I'm using Spring 3.1.1, MyBatis 3.1.1, MySQL 5.0.67. My Spring configuration is below: <bean id="dataSource" class="org.apache.tomcat.jdbc.pool.DataSource" destroy-method="close"> ...
0
votes
0answers
31 views

GenericJDBCException - Could not update

I'm trying to update a record in the database and I'm getting the following error. I'm trying to figure out what exactly this error means. SQLCODE -302 says one of the values may have exceeded the ...
0
votes
0answers
52 views

Type cast weblogic.jdbc.wrapper.ResultSet to OracleResultSet

I have a application using Spring 3.5 , Hibernate 3.6 and deployed over weblogic 10.3.4. This application running fine when i was using the c3po connection pooling, but when i switch to use the ...
0
votes
2answers
33 views

Spring JDBC specify table for query at runtime

My application dynamically creates tables, and I don't know how to read a table using Spring jdbc without hard coding it into the string query. I was thinking about something like this: ...
0
votes
0answers
73 views

Spring Framework using SQL Server 2008 and sqljdbc4.jar

I'm building a web appa nd using Srping Framework. I did the tutorial: https://sites.google.com/site/springmvcnetbeans/step-by-step/ and thought I would easily be able to convert it to the SQL db ...
0
votes
1answer
40 views

JdbcTemplate undertanding

Here's something that I am running across as of late. My understanding of Spring's JdbcTemplate is that you can call: JdbcTemplate template = new JdbcTemplate(dataSource); Connection conn = ...
0
votes
2answers
78 views

Select record in batches Spring JDBCTemplate

I have a table which has around 5 million records. I want to read all the records from this table and do some processing on them. Now I want to query these records in batches say 1000 in one go, ...
1
vote
1answer
79 views

Oracle SQL Query takes too long in JdbcTemplate & SimpleJdbcTemplate

The oracle SQL query available in our application that uses a SimpleJdbcTemplate never (almost) comes out. The query is very long that connects nearly 15 tables, selects approximately 100 fields and ...
0
votes
0answers
21 views

Updating foreign key field on associated objects when persisted

I am using Spring JDBC and I have created several domain classes. Each class (those that need it) have a field for foreign key. I now wonder where I should "notify" to the related objects that the ...
1
vote
0answers
99 views

spring JDBC connection issue with postgres

I have an api in spring that performs crud operations on postgres db. after few insertions its trying to open a new jdbc connection and hangs for ever. [DEBUG,StatefulPersistenceContext,main] ...
0
votes
1answer
41 views

Independent transactions in Spring JDBC

I'm using the Spring JDBC (JdbcTemplate/NamedParameterJdbcTemplate) and Spring TransactionManager (DataSourceTransactionManager) in my DAO class. I have at least 2 clients that simultaneously using ...
0
votes
1answer
53 views

Spring integration message handler : ActiveMQTextMessage

I'm facing a problem using a jdbc-store in a spring-int aggregator component. My flow is like this : ActiveMQ -> aggregator -> jdbc-message-store -> ftp But on handling the messages, i'm facing a ...
0
votes
1answer
70 views

Implementing Spring ChainedTransactionManager according to the “best efforts 1PC” pattern

The best effort 1PC is nicely described in this post. The author, David Syer, who works for SpringSource, provided an implementation of a ChainedTransactionManager extending the Spring ...
3
votes
2answers
98 views

How to synchronize database access in Spring

I encounter a problem on accessing and updating data on mySQL in Spring framework, and I want to ask everyone the most efficient way to lock a TABLE row. Let's say I have two tables: one records all ...
2
votes
1answer
139 views

How to enlist spring JDBC transaction within a XA-transaction?

Using spring's [3.1] SimpleJdbcCall to call a stored procedure in a Oracle db. Again, there is another transaction using JPA 2.0 [hibernate 3.6.8]. Both of them needs to be committed in a single xa ...
0
votes
0answers
62 views

spring mvc and jdbc

I am beginning with spring and I am working on the web mvc. When not in MVC, as pointed in some tutorial, I would specify the data source in beans.xml and call this file with ApplicationContext ...
1
vote
3answers
640 views

JdbcTemplate queryForInt/Long is deprecated in Spring 3.2.2. What should it be replaced by?

The queryforInt/queryforLong methods in JdbcTemplate are deprecated in Spring 3.2. I can't find out why or what is considered the best practice to replace existing code using these methods. A typical ...
0
votes
0answers
55 views

Spring - Error using “JDBCTemplate”: The method “X” refers to the missing type DataAccessException

I´m developing in STS and when I´m going to use JDBC Template I´ve got several errors :S... I´ve got my DAOImplementation and I want to redefine the JDBCTemplate, but all the methods I´m redefining ...
1
vote
2answers
108 views

DAO that emit events on save, update and delete

I have created several DAO classes (I am using Spring JDBC) and I want to emit events on save, update and delete so that I can update the search index as well. One way would be to create the event ...
0
votes
1answer
112 views

SimpleAsyncTaskExecutor trying to read record after completion of processing

In my spring batch project, I need to read from a list of rows from a table, create a chunk of 4 and process and then write to another table. I have implemented SimpleAsyncTaskExecutor to allow for ...
0
votes
1answer
67 views

Spring JDBC one to one relationship

I am using Spring JDBC for an application that I am working on and I am facing an issue. In my domain layer I have fields; primitive types and object associations. If a Person belongs to a ...
0
votes
1answer
91 views

Limitations of MySQL JDBC

Problem: I get large ResultSet from DB(MySQL)(more than 1 000 000 rows) and handle each row about 40 seconds. Summary, i work with ResultSet more than 30 minutes, i get less records than really ...
0
votes
1answer
128 views

Spring DataSource bean not autowiring properly

my Spring.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" ...
12
votes
2answers
435 views

Multiple one-to-many relations in Spring JDBC

I am using Spring JDBC and I am a bit unsure on how to work with multiple one-to-many relations (or many-to-many). In this case I am injecting a repository into one of my resultsetextractors so that I ...
0
votes
1answer
225 views

PreparedStatementCallback; bad SQL grammar in JDBC Spring

I have an update method to update the content of a table based on a specific field and I am getting following exception. Code is : public void updateTaxoActive(String oldDesc, String description) { ...
0
votes
1answer
88 views

Join all tables at once or multiple queries?

I am using Spring JDBC and I wonder what is the best: joining all tables so that I can get all the associations for the object I want to populate or do multiple select queries? How do you deal with ...
0
votes
1answer
55 views

Retrieving objects with associations in Spring JDBC

I am fairly new to using Spring JDBC and I am going to retrieve objects from the database now which have associations to other objects (one-to-many, one-to-one...). I wonder what is the proper way of ...
0
votes
1answer
146 views

How to get multi table results of an stored procedure using SimpleJDBCCall in spring?

I'm implementing a Spring+ MSSQL Server 2008 application. I use SimpleJDBCCall API to execute stored procedures and retrieve results. For stored procedures with mono table results, it works fine, but ...
1
vote
2answers
153 views

How to use Spring to manage connection to multiple databases

I have read other topics but didn't find a good and clear answer What I'm trying to is to develop a web app which is able to: 1) Log/track user events in a seperate UI database which we connect via ...
0
votes
1answer
38 views

Tracking Specific error causing record while doing batch update

Is there any way to track the record which causes exception while performing batch update in hibernate, as i have set the jdbc_batch_size in the hibernate configuration file. the error is thrown only ...
0
votes
3answers
86 views

One DAO per Database Connection?

Using Spring and JDBCTemplates (no ORM), I have a DAO that goes against a CMS database. I now have a need to access another database. Should I create a separate DAO or use one big DAO? Either seems ...
2
votes
1answer
256 views

Spring BatchSqlUpdate vs NamedParameterJdbcTemplate using named parameters

I have been using the BatchSqlUpdate class successfully for a while. The only annoyance using it is that named parameters need to be registered before running any query using the declareParameter or ...
0
votes
1answer
37 views

Some information about SQL instruction in JDBC in a Spring application

I am studying how to implement CRUD operation on a database in Spring using JDBC following this tutorial: http://www.tutorialspoint.com/spring/spring_jdbc_example.htm It is quite clear but I have ...
5
votes
2answers
268 views

Can Spring/JPA/Hibernate use simple JDBC-compliant driver?

We have an application which uses a Spring container on the server which uses EJB3 entities and Hibernate to persist data in a PostgreSQL database. I'd like to add another connection to a separate ...
1
vote
3answers
552 views

Some doubts about RowMapper use in JDBC in a Spring Framework application

I am studying how to execute query on a database using JDBC in Spring Framework. I am following this tutorial: http://www.tutorialspoint.com/spring/spring_jdbc_example.htm In this tutorial I define ...
0
votes
1answer
206 views

How to create oracle connection in Spring application deployed in JBoss Server? (WrappedConnectionJDK6 cannot be cast to oracle.jdbc.OracleConnection)

I want to create oracle connection. Currently i am passing jdbc connection to create struct descriptor and here i am getting exception as below. so to avoid this, required to create a ...

1 2 3 4 5 10