2
votes
4answers
70 views

Generate ID fast and with high probability of uniqueness

I want to generate ID to event that occur in my application. The event frequency is up to the user load, so it might occur hundreds-thousand of time per second. I can't afford using UUID.randomUUID() ...
0
votes
1answer
50 views

this Java UUID5 implementation not passing unit test

I couldn't find a self-contained UUID5 implementation for Java, so I tried rolling this solution below. It passes some of my unit tests but fails others. Any obvious bugs in this? public static UUID ...
2
votes
1answer
42 views

Are UUID's in Android specific to application within the device?

looking in the the web for answers, I am sort of confused id UUID's are unique to a service within the device. I want to know if an application on a particular device can generate a UUID during ...
1
vote
1answer
81 views

UUID bluetooth and android devices

I'm trying to develop an application for Android devices that connects two devices, but the problem is that I can only connect (using Bluetooth) with PC Bluetooth or devices with another OS than ...
1
vote
2answers
39 views

Secure ID in Java with persistency

I'm preparing a Java library that need to assign a unique id to the generated objects for serialization purposes. Once a unique id is generated, I have to ensure that the next time I use the library, ...
1
vote
1answer
53 views

Defina a default type mapping on Hibernate 4

I need to define/override the default hibernate mapping to solve the problem of the java.util.UUID default mapping. I've been looking at several comments related to this topic: Here Postgresql UUID ...
0
votes
0answers
104 views

Hibernate with user defined IdentifierGenerator UUID

I am working with a environment using Hibernate 3.6. I am trying to implement a MySQL table that uses UUIDs from java.util as the PK, these UUIDs are generated from multiple Strings defined by the ...
1
vote
2answers
165 views

How to generate unique Long using UUID

I have a requirement to generate unique Long ids for my database primary key column. I thought i can use UUID.randomUUID().getMostSignificantBits() but sometimes its generating some negative long ...
0
votes
1answer
173 views

It is possible to convert UUID to date using java [closed]

How to convert the UUID to date format 2011-04-22 ? For example, I have UUID like this 118ffe80-466b-11e1-b5a5-5732cf729524. How to convert this to date format? I tried String ...
0
votes
0answers
71 views

Generating UUID takes a long time

When my application first sets up a UserTransaction for Hibernate, it takes ten minutes to do so. I have gone through the stack and it hangs on a UUID.generateRandom().
0
votes
2answers
106 views

Are java.lang.Long or java.util.UUID safe shared secrets?

In order to access resources in my web service application, client applications need to provide a shared secret unique for each resource. Question is: Are Longs generated by a SecureRandom reasonably ...
0
votes
3answers
755 views

Java get uuid or mac address from client

I'm looking for a solution for a java based webapplication to uniquely identify the client. the server is in the same network as the clients and I thought that using the MAC address would be a good ...
3
votes
2answers
439 views

Performance of Random UUID generation with Java 7 or Java 6

I have a web based Java application that generates random UUIDs for session information. One of our testers is claiming up to 350ms to generate UUIDs based upon his own profiling, but I have not yet ...
1
vote
2answers
539 views

Forgot Password Request (Java) [closed]

Quite a common subject for most of you guys. I'm building a webapp in Java, using Spring + Spring Security + Hibernate + MySQL + etc... I'm in the process of implementing the "reset password" ...
0
votes
2answers
108 views

Java UUID's long representation

I'm storing tons of Java UUID into a HashMap as row using UUID.toString(). Since the data is huge, soon it throws OutOfMemoryError. Now I'm thinking about a compact way to represent the UUID, ...
0
votes
1answer
209 views

Hibernate mapping - Could not determine type for pg-uuid

I'm actually trying to use the Hibernate ORM with java annotations for the mapping. I use PostgreSQL for my database and its UUID type. As I have seen on others posts, when I want to map the UUID ...
0
votes
3answers
211 views

Android Id and its reliability

i want to generate Uuid for my app so i tried many methodes for this 1) Getting Serial number of device using android.os.Build.SERIAL(this returns "unknown" as result) 2)Dealing with device id(i ...
1
vote
2answers
266 views

Android and Java Uuid

I want to generate a uuid for my app i tried many things like wifi mac address , getting android id, serial number , creating pseudo uuid from device android.os.Build properties . i also came to ...
1
vote
0answers
139 views

Random UUID generation

Greetings fellow programmers, I am writing a simple bluetooth application to discover devices and connect with them. When I use the UUID "00001101-0000-1000-8000-00805F9B34FB" to connect with my ...
0
votes
1answer
157 views

Way to create common name-based UUIDs in Java and PHP

Team Sof, I have a requirement to generate name-based UUIDs for my project. The catch is that FE uses PHP to generate identifiers based on a string, and BE uses Java to create those UUIDs based on ...
0
votes
1answer
271 views

get the unix timestamp from type 1 uuid

In our java application we are trying to get the unix time from the type 1 uuid. But its not giving the correct date time values. long time = uuid.timestamp(); time = time / 100000000L; // Dividing ...
0
votes
1answer
361 views

Data type for UUID as a primary key in a JPA entity class

I have a requirement to read and write records using JPA to a table in a DB2 database where the primary key is a UUID stored in a column defined as "char(16) bit for data". As the data is stored in ...
0
votes
2answers
741 views

Conversion String to UUID in Postgres and Java

I need to convert String ( text ) to UUID ( Postgres ) and keep the same sorting like for a String. Is it possible? I saw the UUID base on the time, so maybe it's not possible?
3
votes
0answers
200 views

Java / .NET implementation of deterministic GUID/UUID generation

I am trying to replicate the following .NET code in Java https://github.com/LogosBible/Logos.Utility/blob/master/src/Logos.Utility/GuidUtility.cs I have written equivalent code in Java but I get ...
2
votes
2answers
303 views

Having issues with ANDROID_ID

I'm trying to get ANDROID_ID working in my appn but I'm getting odd behavior in my emulator and also on hardware. an extract from my app. import android.provider.Settings.Secure; public class ...
1
vote
1answer
357 views

How should I save UUID with JPA?

How should I work with UUID and JPA? Should I assign the random UUID value to a String field in my class? Or should I have a field with type UUID and do something else to it when I want to map it to ...
2
votes
1answer
146 views

Using UUID as business key and equals/hashmethod

I am working on a new application and I need some help on how to implement the equals method and the hashCode method. I have been reading many questions already asked here on SO, and I have also read ...
0
votes
0answers
233 views

fetchUuidWithSdp always giving the cached UUID

i am writing an app in which i have to do a service discovery on a selected device, but whenever i am doing a fetchUuid it is always giving me the cached UUIDs on the remote device. here is what i am ...
1
vote
4answers
505 views

unique Number generation by UUID in Java ?

I am looking at a piece of code, and i can see that the following code has been written which generates a string, and that string has been set as the primary key of the table. return new ...
0
votes
2answers
305 views

UUID random number generation

I am using UUID Random number as a primary key of Object when i save object in Database. So this generated UUID number should be unique. This way i got random number. final String UUIDUserToken = ...
3
votes
2answers
462 views

java 7 uuid bug?

I believe I may have found a UUID multi-threading bug in Oracle Java7 Update 5 and I was wondering if anyone could confirm with an independent example. Basically what happens is if I call ...
2
votes
2answers
478 views

Java UUID Compress & Decompress back

I would like to do the following... a) Compress a generated UUID to String of length 8. b) Decompress the compressed UUID back to the original UUID. The reason is because I have to send the UUID to ...
1
vote
2answers
268 views

Convert from Java UUID to an android UUID

I have an UUID like this: 0xbb886aeb-36b5-4c85-8652-c823d300997e Represented as Hex, if am not mistaken. I want to use this UUID in my android application like this: tmp = ...
0
votes
0answers
207 views

Querying by non-mongo-generated Id (Java UUID) in Morphia

I know this is fairly embarrassing because querying by ID is like a trivial use case of databases, but for some reason, I'm having issues with the java UUID class. public class ARecord extends ...
4
votes
3answers
363 views

UUID shortening

I need to calculate the daily number of unique users of an app. The only way I can uniquely identify a user is via their UUID (this is externally supplied so I am forced to use it). I know that my ...
0
votes
1answer
85 views

UUID field not stored by NeoDatis

I have a strange problem using an UUID field in a class. I'm using NeoDatis to persist objects to database, and this is working fine, except that the field value of retrieved instances is not equal ...
1
vote
2answers
1k views

Persisting UUID in PostgreSQL using JPA

I'm trying to persist an entity in PostgreSQL that uses UUID as primary key. I've tried persisting it as a plain UUID: @Id @Column(name = "customer_id") private UUID id; With the above, I get this ...
0
votes
2answers
573 views

Generate 16 bytes uniqueId ( or UUID ) and test it

I need to create a unique ID. It has to be 16 bytes long. I came across to java.util.UUID and try to use UUID.randomUUID(). But how to make sure that the generated UUID to be 16 bytes long? In my ...
6
votes
6answers
1k views

Is UUID.randomUUID() suitable for use as a one-time password?

As previous discussed, confirmation emails should have a unique, (practically) un-guessable code--essentially a one-time password--in the confirmation link. The UUID.randomUUID() docs say: The ...
-3
votes
4answers
714 views

How to create integer UUID in java [duplicate]

Possible Duplicate: Is there a way to generate a random UUID, which consists only of numbers? I don't want to have chars in the UUID only integers .. how to do that in java ?
0
votes
0answers
485 views

How to handle Postgresql UUIDs with Hibernate

I'm adding JPA (Hibernate) to a project that uses uuids in Postgresql. The uuids are the Postgresql uuid type. I've followed these instructions and added Hibernate annotations like this: ...
0
votes
3answers
112 views

Easy to remember guid

Is there a block of Java UUID that won't automatically generated? I would like to define an easy to remember guid inside of my code that will act as a constant. Something like a null?
0
votes
0answers
276 views

Generating Unique ID (reproducible) for a system

I am looking for a way to generate a Unique ID for a system such that, every time this ID is generated it should be same as long as on the system. (I am not sure if that's even possible) I am using ...
3
votes
1answer
636 views

Is the Hardware UUID on Mac sensible to use for licensing

Ok, I know that no licensing scheme is uncrackable; I'm not asking for one. I've already got a method in Java that will combine that hosts MAC Address, CPU Type, and Hard Drive serial on both Windows ...
1
vote
3answers
202 views

Understanding this code

Kind of need help understanding what this code actually outputs. Does it out put a uuid to a file? I found it on http://android-developers.blogspot.com/2011/03/identifying-app-installations.html ...
2
votes
2answers
335 views

Random GUID in Java (A different format)

One of the components that I use needs to feed an XML into it. The component provider has not provided any documentation or the specs of the XML. I am trying to generate the XMLs by trial and error ...
0
votes
2answers
1k views

Application Generate UUID?

I guess i kind of need more understand of how a UUID actually works. Im working on an application and i want the app to generate a UUID the first time the user downloads and runs the app. Is it ...
1
vote
2answers
1k views

Convert xs:string to java.util.UUID in jaxb

In jaxb, how do you convert a string in xsd to java.util.UUID? Is there a built-in data type converter or do I have to create my own custom converter?
5
votes
2answers
464 views

What namespace does the JDK use to generate a UUID with nameUUIDFromBytes?

The Sun/Oracle JDK exposes a function to create a type 3 (name based) UUID in the java.util package: java.util.UUID.nameUUIDFromBytes(byte[] name). I need to be able to generate a type 3 UUID in Java ...
2
votes
1answer
608 views

Custom UUID as primary key

I have been reading on the advantages and disadvantages of using a UUID as a primar key in a database. The main argument I have been hearing against such a practice is that if they aren't generated ...

1 2 3