Tagged Questions
Java is an object-oriented language and runtime environment (JRE). Java programs are platform independent, because they are compiled to bytecode and their execution is handled by a Virtual Machine called the Java VM or JVM.
7
votes
1answer
234 views
+50
Java vs Python HMAC-SHA256 Mismatch
Based on recent feedback and findings on this problem, I've rewritten the question to get rid of noise.
I have 2 separate code paths, one in Java (Android), one and Python which accomplish the ...
8
votes
5answers
389 views
+50
Computing method call stack size for checking StackOverflowException
Today morning I answered a question which is related to StackoverflowException . The person has asked when Stackoverflow exception occurs
See this link Simplest ways to cause stack overflow in C#, ...
3
votes
5answers
119 views
+50
Using intercept-url in Spring security
What is the preferred way of making patterns in the intercept-url element in Spring security?
I am creating a web service (RESTful) and I currently require that all users are logged in and have the ...
4
votes
4answers
293 views
+50
Concurrently Pair Matches
I'm looking for a java concurrency idiom to pair matches with a large number elements with the highest throughput.
Consider I have "people" coming in from multiple threads. Each "person" is looking ...
3
votes
1answer
87 views
+50
How to make numeric comparison when using morphia to perform an $elemMatch query
My document has the following structure:
{
"scores": [{
"scoreTitle": "environment",
"scoreValue": 3,
"scoreDescribe": "good"
}, {
"scoreTitle": "service",
"scoreValue": 3,
...
2
votes
1answer
54 views
+50
API for timetable events
I need a library which would allow to create calendar events, allow to monitor clashes and assign roles to the event. There should be something there as I don't want to invent bicycle. Context: Spring ...
2
votes
0answers
45 views
+150
Why doesn't dtruss show me the select system call in this JNI code?
While investigating this JDK bug on Mac OS, I ran into system call trace output I don't understand:
Tomcat startup fails due to 'java.net.SocketException Invalid argument' on Mac OS X
The ...
0
votes
2answers
83 views
+50
WordNetSimalarity in large dataset of synsets
I use wordnet similarity java api to measure similarity between two synsets as such:
public class WordNetSimalarity {
private static ILexicalDatabase db = new NictWordNet();
private static ...
0
votes
1answer
169 views
+50
Jframe will not close on “X”
This code does work in every way but now it does not close fully, it seems to hang as I hit the "X" on the window. After I hit close, if I minimize the screen and then maximize it back up it just ...
0
votes
0answers
107 views
+350
Selenium IEServerDriver not finding new windows for IE9
I am working with Selenium WebDriver to automate my companies site. At one point, the web application opens a new window via the following:
<a ...
0
votes
0answers
77 views
+500
Jocl and Device Fission
Question: For JOCL, how can I exclude some cores of CPU from the opencl calculations with device fission?(Java port of cl_device_partition_property seems to be corrupt for 0.1.9 version)
Edit: I ...
1
vote
2answers
79 views
+50
Simulate a p2p network on one pc java
How to simulate a network in Java?
I'm in the early stages of a networked peer to peer project, and to determine some of the required characteristics of the clients I'd like to be able to simulate ...
0
votes
1answer
74 views
+50
EntityManager remove() call not updating database
I have a basic Java project setup using JPA. I have classes which are annotated properly and can insert data into my PostgreSQL database without any trouble.
My question... and I may find that I ...
8
votes
3answers
103 views
+50
JUnit parameterized tests: how do I run only 1 specific test from IntelliJ/Eclipse?
I have a @Parameterized junit test that spawns 50 tests:
@RunWith(Parameterized.class)
public class NurseRosteringSolveAllTurtleTest ... {
@Parameterized.Parameters(name = "{index}: {0}")
...
2
votes
1answer
121 views
+100
Implementing a backtrack search with heuristic?
I'm getting quite interested in search algorithms and backtrack programming. For now, I have implemented Algorithm X (see my other post here: Determine conflict-free sets? ) to solve an exact cover ...
1
vote
3answers
63 views
+100
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/hiber nate/cfg/Configuration
I created a project in Eclipse and executed it succesfuly (It's a normal project, without Maven or Beans, really simple), I created a .jar with the project and tried to execute it but it throws the ...
2
votes
1answer
78 views
+200
Java printing - Enlarged printouts on a small number of printers
On some printers, for whatever reason, the printouts are automatically enlarged with what seems to be default settings when printing through the Java JVM (Java 7). This seems to be with older ...
0
votes
2answers
43 views
+100
Android - Keyboard not appearing in floating window
I'm writing an application that uses the following code to draw an edittext on the screen over running applications:
WindowManager.LayoutParams params = new WindowManager.LayoutParams(
...
0
votes
1answer
50 views
+150
CloudBees Runtime Classpath
I just read the CloudBees whitepaper "CloudBees Advantages: A Guide for Java Developers". In it there is a sentence that reads:
The database is simply available as a JNDI resource as soon as it is ...
1
vote
1answer
29 views
+100
CloudBees and App Cells, Instances and Pools
I am trying to understand the difference between:
An app-cell
An app instance; and
An app pool
For instance, how do I know when it is appropriate to add more app-cells for my app? Or to add more ...
0
votes
1answer
47 views
+200
How to set up multiple “environments” with CloudBees?
I just read all the CloudBees developer docs and was surprised I didn't see anything about setting up multiple environments for your deployment pipeline.
I plan on running my app locally, then ...
0
votes
1answer
28 views
+150
CloudBees, Availability Zones and Disaster Recovery
What is the difference between what CloudBees calls a region-specific deployment and what they (and Amazon) call an availability zone?
From what I can tell, CloudBees allows you to deploy in 1 of 2 ...
-1
votes
1answer
39 views
+50
Cropping Shape of Square Image Android In App
I want to create an application which allows to resize an image in shape of square (length = width).
I know that it is possible to use the galery to make that in this way:
private void crop(Uri ...
0
votes
0answers
44 views
+50
Debug Lua in a Java project using LuaJava
My project has LuaJava as the script interpreter, for usage in both desktop and android via AndroLua. I want to be able to debug it, but I'm unable to arrange it.
I have tried with an Eclipse plugin, ...
1
vote
1answer
19 views
+50
Add MS Office Documents to PDF via Apache PDFBox
I'm using Apache PDFBox (http://pdfbox.apache.org/) for creating PDFs out of an arbitrary amount of files, including Images and other PDFs. Now I need to add MS Office Documents (Word, Excel and ...
0
votes
0answers
78 views
+50
primefaces partial processing not working
I would like to use partial processing but it does not work in my code. Does anybody knows why?
<h:form id="frmVehicle" prependId="false">
<p:toolbar styleClass="form_toolbar">
...
12
votes
6answers
12k views
+50
Limit Decimal Places in Android EditText
I'm new to android and trying to write an app that helps you manage your finances.
I'm thus using an EditText Field where the user can specify an amount of money.
I set the inputType to numberDecimal ...
0
votes
0answers
57 views
+50
url context changing between local server and tomcat
Hi I'm working on a application that has a weird problem. The application works fine in both local tomcat and remote tomcat deployments, but on certain modules the url context changes.
Here's one of ...
1
vote
3answers
62 views
+50
Storing and comparing against objects from a database
I am working on an android app that loads in a list of students to display in a list based activity. There are two components to the app. There is a server which responds via xml with the list of ...
0
votes
0answers
36 views
+50
JBoss Clustering and Lighttpd Load Balancing displaying inconsistent behaviour
PROBLEM
We have two JBossAS 4.2.3 installed on separate machines and they are clustered. We also make use of Lighttpd that acts as load balancer, and is placed between our Tomcat servers (the Tomcat ...
0
votes
2answers
27 views
+50
Retrieving a UTC datetime from a data source — putting it into a Joda DateTime object and persisting it to MongoDB. What is the best way?
I am pulling data from an external source into my program and it has an ISO8601 Date attached to it but one of our requirements is that the hour/minutes/seconds get set to zero. This happens before I ...
1
vote
0answers
55 views
+50
Listactivity error with jelly bean running device ( SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length)
I have app consist of listactivity , each row when clicked open activity contain textview and two button one of them open infinite gallery , the other open custom dialog , also i have menu items ( ...
5
votes
1answer
62 views
+100
How is jProfiler handling JIT?
I use jProfiler extensively and it is a great tool but I am wondering how is jProfiler handling the effects of the JIT compilation.
Am I able to observe for example method inlining? If a method is ...
0
votes
0answers
36 views
+50
Collection not loaded if bean was loaded before as relation
I have the classes A, B and C. A has a property to B (manytoone) and B has a property to C (onetomany). The classes look like the following ones (shortend to the relevant properties):
class A {
...
1
vote
1answer
33 views
+50
How to get password from console when java application is invoked using nohup
I want to start a sever application, written in java, after verifying the users authorization to start the server app. So, I tried implementing it using System.console(). The problem is my server app ...
1
vote
0answers
39 views
+50
JTOpen KeyedDataQueue read() timeout
I've detected a strange behavior when using the read() method provided by JTOpen's KeyedDataQueue class.
I've set an 90s timeout and for 99% of read executions when the timeout is reached my calling ...
1
vote
0answers
36 views
+50
JAX-WS Web service on Tomcat without sun-jaxws.xml
I am trying to minimize required configuration while deploying JAX-WS-based Web service on Tomcat. With the introduction of Servlet 3.0 (supported by Tomcat 7+), web.xml can be thrown out, but there ...





