1
vote
1answer
34 views

Send hashed or encrypted password to AS400 jdbc connection

Need to send a hashed or encrypted password when creating the db connection, see details below: We have a Spring application that connects to a DB2 AS400 database. We are currently using ...
0
votes
0answers
28 views

Oracle IO Error during SELECT query via Hibernate -> JDBC

We're experiencing a strange connection break during SELECT queries under heavy load. Platform Details: Solaris, Oracle 11 G, JDK 1.6, Application: Spring + Hibernate Exact error messages ...
0
votes
1answer
31 views

Spring framework jdbcTemplate's queryForObject method

I am new to Spring and reading the book "Spring in Action", I have a question about the following example: public Employee getEmployeeById(long id) { return jdbcTemplate.queryForObject( ...
0
votes
1answer
32 views

Forcing hibernate to release connection on session Spring MVC

I am using Spring MVC 3 and Hibernate 3.6, I use xml configured transaction management, my code works greate but my JDBC are not being released although it says it does. I checked it with JProfiler ...
-1
votes
0answers
25 views

Netbeans Spring cannot create datasource, cannot find Mysql JDBC Driver

I am trying to deploy a new web application in Netbeans using Spring and Hibernate. I cannot seem to get past step one of setting up the context because of errors with loading the JDBC driver. The ...
0
votes
3answers
37 views

JDBC Connection Pooling vs Dependency Injection

I'm quite new to Java EE and Connection Pooling. I've already tried few pools and every single one of them had the following issue: ConnectionPoolDataSource source = new ConnectionPoolDataSource(); ...
5
votes
1answer
69 views

Unsure how to return generated column id value using Spring jdbcTemplate and PreparedStatementSetter

Before refactoring, I was inserting a row into the db using jdbcTemplate, preparedStatementCreator and a GeneratedKeyHolder to store the generated id of the inserted row. ...
0
votes
1answer
54 views

Why are connections closing prematurely in our Spring/Hibernate/JDBC/Websphere system?

We are having a sporatic issue with session closing during a users request with Spring+Hibernate+JDBC running on WAS8. It has happened before and went away and now its reared its head again, always ...
0
votes
0answers
43 views

Spring annotation driven scheduled task failure with JDBC tansaction exception

I am using Spring3.2 + Struts2.3 + hibernate4.1 to build a website. I scheduled a task to run at 7:00AM each day. The task can run successfully if I scheduled the task run immediately, which means ...
0
votes
0answers
62 views

org.hibernate.exception.GenericJDBCException: could not load an entity

During the run time of my code it throws the exception- org.hibernate.exception.GenericJDBCException: could not load an entity: [com.expo.esf.model.InvoiceHouse#15566] 2013-05-27 15:41:12,852 WARN ...
2
votes
1answer
50 views

Alternatives to large IN clause in JDBC, how to use Table Value Parameters from Java?

I'm using SQL Server 2008 RC2. We often have to do a query similar to this: select * from Site s where s.name in (:names) Where ":names" is a big StringBuilder of 1000 comma-separated 18-byte ...
0
votes
0answers
58 views

Retrieve a Spring JdbcTemplate object using other DAO [closed]

Performing a job in Spring JDBC, I recall a related object by its ID, which also has a search by ID. public class Persona { private Integer id; private String primerNombre; // ... } ...
0
votes
1answer
93 views

Spring JDBC for SQL Server - Using SQLXML datatypes yields SQLServerException: Implicit conversion from data type xml to nvarchar(max) is not allowed

I'm trying to make use of a SQL Server stored procedure that uses XML in/out parameters using a Spring SimpleJdbcCall as per this example from the Spring 3.2 documentation ...
0
votes
0answers
63 views

Spring JDBC and GeneratedKeyHolder

I have some code this looks like this sample here (Spring 3.1). It works just fine. But I am wondering if there is a more Spring-ish way of returning the key (Oracle nextval) that I just inserted. ...
0
votes
0answers
73 views

Quartz / Spring / Postgres: Connection is always closed

I'm trying to get a Spring 1.3.1 application working with Quartz 2.1.7. This will be running in a clustered configuration with a postgresql jobstore. I've been receiving this exception on startup: ...
0
votes
0answers
28 views

Jdbc statement error

I have problem with such simple thing, sql statement, I have table in database that contains link in varchar(255), people are logged to site by links, so I'm taking logged person name (Getting ...
-2
votes
0answers
48 views

@Transactional annotation - no transaction

I spent a lot of time on resolving problem with transactions started by @Transactional annotation but I can't find way how to start and commit transaction. Mabye I don't understande Spring ...
0
votes
1answer
103 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
48 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
34 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
80 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 ...
0
votes
1answer
49 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
52 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
129 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
32 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
123 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
93 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
115 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
0answers
38 views

spring security don't accept my table user

please haw can I configure my authentication-provider spring security ..to make him connect on my own table user CREATE TABLE users ( id serial NOT NULL, username character ...
0
votes
1answer
246 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
35 views

spring security with my own table

I would ask a question about spring security !! is that possible to configure authentication-provide with my own table this is my exemple tale "utilisateur" CREATE TABLE utilisateur ( id_user ...
0
votes
1answer
190 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
341 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
51 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
69 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
42 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
109 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
87 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
162 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
118 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
22 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
129 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] ...
1
vote
1answer
45 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
72 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
128 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
113 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
203 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
91 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 ...
3
votes
3answers
1k 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
106 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 2 3 4 5 10