Tagged Questions
0
votes
0answers
66 views
access data from facebook using proxy server
I have to develop a facebook application which has to fetch data from facebook via a proxy server. The proxy server is a middle server which channels facebook with the facebook application. It is the ...
0
votes
3answers
37 views
JPA Hibernate - @ManyToOne not getting correctly
I'm using JPA (Hibernate) and I have a problem when I try to fetch an object from my database. I'm using Glassfish 3.1.2, Hibernate and Oracle database 10.2.0.4.
Here is the concept of my ...
2
votes
3answers
33 views
Fetch not repeated rows in hibernate
I would like to fetch a list from a query in Hibernate but without repeated elements.
Currently i have something like:
SELECT t FROM Table t join fetch t.list tl WHERE tl.userid=:userid AND ...
0
votes
1answer
35 views
Nutch - fetch new discovered domains
We're using nutch 1.6 to crawl web. According to nutch configuration, one should give the seedlist and domain url-filter to traverse across specified domains. However, we want to fetch newly ...
0
votes
0answers
33 views
Is is possible to fetch related entities in my dynamic JpaRepository query?
Suppose I have a Spring Data repository:
public interface MyFancyRepository extends JpaRepository<MyClass, Long> {
MyClass findByNameWithSomething(String name);
}
Is it possible to make ...
0
votes
4answers
247 views
JAVA Getting data from Database Without a loop
I am Programming a software with JAVA and using the Oracle DB.
Normally we obtain the values from the Database using a Loop like
Resultset rt = (Resultset) cs.getObject(1);
while(rt.next){
...
0
votes
0answers
52 views
Lookahead for row based queries
We are currently working on an application, where we use row based processing of the results. We do this, because the sheer number of results is too large to fit into the memory of the processing ...
-1
votes
2answers
127 views
Uncaught error fetching image in exported jar
i have an application that loads an image to create a button with an icon in it. When started from the IDE, it works just fine, but when started from an exported jar file, it gives an image fetching ...
4
votes
1answer
310 views
Git returning null on hudson
I am working on a project using git with hudson to build some tests. I have done all the hudson configurations (at least think I did) and I downloaded git for windows. The repository is located on ...
0
votes
0answers
140 views
fetch email and display on android textview
I have to develop one android application.
Here i have to fetch the email for beloning user and display that email on android textview.how can i develop these.please give me any idea.
This is my ...
0
votes
0answers
211 views
hibernate not doing a eager fetch (using fetch=“join” and lazy=“false”)
I want to do a eager fetch in my webapplication.I have following in my mapping file
<many-to-one name="user" class="com.xyz.beans.User" fetch="join" lazy="false">
<column ...
0
votes
0answers
81 views
Java Google tasks API - can't see tasks
My issue with Google Tasks API is that I can't see tasks added via my application.
Moreover, when I fetch tasks from my google account I can see only tasks added via my application - even if I add ...
0
votes
2answers
299 views
JPA fetch on 3 levels
I need to do something like that :
The structure is :
X contains a list of Y.
Y contains or not a list of Z.
Xroot.fetch("Y", JoinType.INNER);
Xroot.fetch("Y.Z", JoinType.LEFT);
But in JPA the ...
4
votes
2answers
216 views
Hibernate LAZY fetch not initializing an instance
I encountered a problem with lazy association two days ago and still haven't found an explanation of such a behavior.
Here is my simplified class hierarchy:
@Entity
@Table(name="A")
public class A
{
...
0
votes
1answer
1k views
How to fetch entire row as array of objects with JDBC
I have to make a 'query' method for my class which accesses MySQL thru' JDBC.
The input parameter to the method is a full SQL command (with values included), so I don't know the names of columns to ...
-1
votes
2answers
107 views
How do I use java to fetch dynamic web content?
I've been programming in java for a little while and I've found no real way to even come close to this goal. My googling has been pretty fruitless as well.
I'm looking for a way to essentially ...
6
votes
4answers
3k views
JPA default fetch type
From my understanding @OneToOne and @ManyToOne JPA annotations do an eager fetch. I want these to be lazily loaded in my application, or at least hint at it (which is what hibernate defaults to). I ...
2
votes
2answers
536 views
Hibernate 'join' fetching weird behaviour
I have a user and a message table. User to Message are one-to-many relationships and Message to User are many-to-one relationships. I've marked one of the many-to-one as fetch join. When I 'get' a ...
2
votes
1answer
519 views
JPA Query with fetching/join retrieving only certain associations
once again my brain is less powerfull than the logic....
My Example has a one-to-many association where a Person has many Items.
An Item has a Date property. I want to do a query where the object ...
1
vote
7answers
1k views
How to fetch date and time from String in Java?
I got String like "Wed, 08 Feb 2012 09:06:41 +0000".
I want to fetch "Date" 08-Feb-2012 and "Time" 09:06.
How can I get it?? Please Help me.
Thanks in advance..:)
0
votes
1answer
366 views
Get Array From List Of Rows?
I was curious on how to get a list of rows and add values from each row to an array in Java.
Here is what it looks like in PHP:
<?php
$result = mysql_query("SELECT * FROM names");
while($row = ...
1
vote
1answer
1k views
How to free memory after fetching data via jdbc
i am using spring jdbc on weblogic. And i set fetch size to 500 for fetching data from db more faster. But this causes memory problems. Here is an example:
...
0
votes
1answer
284 views
Multiple JQPL fetch joins fail with Hibernate
Using Hibernate 3.6.7 and JPA 2, I cannot have two fetch joins in one query. Entity has a self referencing field called parent. localizedTexts is an @ElementCollection, of Java type of Map. ...
5
votes
1answer
520 views
Insert to JPA collection without loading it
I'm currently using code like this to add a new entry to a set in my entity.
player = em.find(Player.class, playerId);
player.getAvatarAttributeOwnership().add(new AvatarAttributeOwnership(...));
...
2
votes
2answers
10k views
How to Fetch @OneToMany and @ManyToMany Entities
my issue is very related to the following:
Why am I getting a Hibernate LazyInitializationException in this Spring MVC web application when the data displays correctly?
I have the following ...
3
votes
0answers
912 views
How to get Hibernate FetchProfile to load deep child objects in the hierarchy
I have the same question as someone posted in the Hibernate Community: FetchProfiles.
For performance reasons I have a relationship in the data model as follows:
...C -[FetchType.LAZY]-> D -> ...
2
votes
1answer
1k views
How to do join fetching instead of select fectching with EclipseLink?
I've got a OneToOne relation between two entities. This relation is eager by default, but when logging requests, I only see multiple selects, no join appears. Same thing when forcing eager.
Do you ...
8
votes
3answers
8k views
JPA 2 Criteria Fetch Path Navigation
With JPA 2 Criteria Join method I can do the following:
//Join Example (default inner join)
int age = 25;
CriteriaBuilder cb = entityManager.getCriteriaBuilder();
...
0
votes
1answer
1k views
Displaying emails in a JTable (Java Swing)
Hi I'm new to all this. I have been trying to display fetched emails in a JTable using the JavaMail add-on. However when I ask the program to set the value it never does. I have been working in ...
0
votes
3answers
164 views
Designing DAOs for data sources other than a database
Until now I've been used to using DAOs to retrieve information from databases. Other sources of data are possible though and I'm wondering if and how the pattern could be applied in general.
For ...
