EJB / EE :: Use Asynchronous Annotation In Distribute Environment
Jul 18, 2014
Can we use EJB @Asynchronous annotation in distribute environment. I know we can use it but I want to know its Advisable or not. Because It's not advisable to manage user thread in Distribute environment like EJB container .Earlier if we want to make Asyn call then we use JMS. But now they added @Asynchronous annotation with Future Class to achieve the same result.
View Replies
ADVERTISEMENT
Jan 18, 2014
I want to create a program that takes n number of people (String vector) and assigns them a random group number (int) the range from 1 to k. The number n is evenly divided by k.
I have created a program that associates every String with a random int number. There is however the problem that the random generator just gives a random number, but doesn't make an equal number of people for each group. Which means even if the numbers are random, some of the numbers happen to come up more times than others.
How can I write, to make sure that each number is generated the same amount of times?
View Replies
View Related
Jan 20, 2015
I have an application separated into three different projects - core, command line version and Web UI version.
Core contains all the business logic in several services classes. Command line version and Web UI version both uses the core project services.
Command line have main class which call services from core. Web UI version is Spring base application using same services from core.
Java Code:
CoreProject
- src
- Service Classes (code here use thirdParty jars and core_file.txt)
- lib
- thirdParty.jar
- core_file.txt mh_sh_highlight_all('java');
[Code] ....
Now I want to give two separate versions to client.
Command line version to run as service in Windows andUI version to deploy in their server.
With above structure I create the cmdline.jar but when I am trying to run with
Java Code: java -jar cmdline.jar mh_sh_highlight_all('java');
I am getting java.lang.NoClassDefFoundError exception for the service classes in core. So my question is how to pack/generate jar for this kind of distribution?
View Replies
View Related
Dec 26, 2013
I need to port asynchronous bean (provided by websphere) support in App servers like weblogic and jboss. Is this feature already part of J2EE specification? Or should I use some other external package to get this feature?If so what are those async bean like features for weblogic and jboss?
View Replies
View Related
Oct 24, 2014
For some reasons my servlet doGet method is being called twice. I am calling servlet from the index.jsp page by using servlet annotation "/Profile/*. And it passes path as localhost:1919/Profile/username to getPost method.
<li><a href="Profile/<%=lg.getUsername()%>">Your Profile</a></li>
Servlet Profile retrieves data from the java container stores it as an attribute and forwards to profile.jsp page.
rd = request.getRequestDispatcher("/profile.jsp");
request.setAttribute("ProfileInfo", proInfo);
rd.forward(request, response);
My profile.jsp page uses java code to show all the data (and it shows it perfectly). But then I click link to the next update_profile.jsp page. Just simple link. Then I realize that on this step for strange reasons for me doGet method from Profile servlet is called the second time. And passes path as localhost:1919/Profile/update_profile.jsp
Here is my profile.jsp code:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ page import="uk.ac.dundee.computing.aec.instagrim.containers.*" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
[Code] ....
And update_profile.jsp file is just simple file with <h1>hello</h1> output. I have looked in the internet that this might be a mapping problem or my css relative path connection problem. As you see I have commented out my css connection and problem still exists. My run output in the IDE also shows these errors:
org.apache.jasper.JasperException: An exception occurred processing JSP page /profile.jsp at line 27
24: %>
25: <article>
26:
27: <h2>User: <%=proInfo.getUsername()%>
28: </h2>
29:
30: <h3>First name: <%=proInfo.getFirstname()%>
Stacktrace:
at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:568)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:470)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:391)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:335)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
[Code] .....
And my tomcat run configuration settings: [URL] .... and [URL] ....
View Replies
View Related
Aug 16, 2014
package com;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import java.io.*;
@WebServlet(urlPatterns = "/alan", name = "NullS", asyncSupported = true)
public class Null extends HttpServlet {
[Code] ....
When I run this servlet this generates thousand of lines of output. Whats the problem?
View Replies
View Related
Jul 31, 2014
I have a very simple login form. However, I keep getting http: status 404 -/login
login.jsp
<form action="/login" method="post">
<input type="text" name="username"/>
<input type="submit" name="submit"/>
</form>
[Code] ....
View Replies
View Related
Sep 12, 2014
I have been recently been working on a library to handle loading and saving settings in a Java application using annotations. Here is how the library is used currently:
package main;
import dhuk.settings.main.SettingsManager;
import dhuk.settings.main.SettingsTarget;
public class Main{
public final String keybinds = "keybinds.txt", settings = "settings.txt"; // Constant strings to be used as the file's paths
SettingsManager sm = SettingsManager.instance; // Singleton used to manage all of the settings files.
[Code] .....
Here is a link to my bitbucket repository: Click Here
View Replies
View Related
Apr 20, 2014
This is my first java program.
public class Myjava
{
public static void main (string args[]) {
system.out.println("hello java world");
}
}
I am getting the below error in cmd when compiling the program with command javac Myjava
Error: class name are only accepted if annotation processing is explicitly requested.
View Replies
View Related
Apr 13, 2014
I am new in this programming language, java. I have a problem after I set my path ";C:Program Files (x86)Javajdk1.7.0_51in". I made a simple program but an error occurred. Here's the screenshot.....
Attached image(s)
View Replies
View Related
Oct 8, 2014
I have a project which has a set of configuration files, where each configuration file represents an environment specific configurations. In other words, I have 3 environments, development, staging, and production. The configuration for each environment is different, e.g. DB name, url etc.
Whenever I want to deploy the same code, on each environment, I have to manually generate environment specific .war file, so that it has environment specific configuration file in it.
What I am looking for is a kind of solution where i have to compile only once in maven and it generates only one .war file, which I can use on every environment. In other words, i want the environment specifi application server/tomcat to identify which configuration to pick.
That way, I'll be sure that we are deploying and testing the same .war file on every environment/application server.
How can i restructure the application to achieve this functionality?
View Replies
View Related
Aug 26, 2014
Flow of this program?
public class ThreadA {
public static void main(String [] args) {
ThreadB b = new ThreadB();
b.start();
synchronized(b) {
[Code] ...
View Replies
View Related
Sep 19, 2014
I am trying to run tshark command using runtime environment in java on ubuntu . My code is as follows :-
try {
String destip = map1.get((String) innObj.get("value"));
Runtime run = Runtime.getRuntime();
String tshk = "/usr/bin/tshark -r /home/pratibha/Desktop/vox.pcap -Y "ip.dst == "
+ destip
+ " && http" -T fields -e tcp.port -e col.Info";
Process pr = run.exec(tshk);
[Code]...
map1 is hashmap which contains the destination ip adress When i run the above code the exit code for process (pr) is 1 and hence the tshark command is not executing properly.
View Replies
View Related
Jul 8, 2014
While executing my application i came across with this unexpected error which i don't know why?
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fdcacd79a9, pid=4980, tid=7724
#
# JRE version: Java(TM) SE Runtime Environment (7.0_45-b18) (build 1.7.0_45-b18)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (24.45-b08 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C [ntdll.dll+0x79a9]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit: [URL} .....
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
View Replies
View Related
Sep 4, 2014
how would a program code look like, input ten words and output them backwards in a msdos environment. My code this far is:
package baktext;
import java.util.*;
import java.io.*;
import java.awt.*;
//public static String baklänges(String s) {
//}
public class Baktext {
[Code] ....
View Replies
View Related
May 8, 2014
I have a button on UI which adds messages and when the user clicks on it the form gets submitted, meanwhile the user is clicking on refresh(F5) multiple times which is causing the same message to be displayed multiple times. To resolve this , I am converting the form from a synchronous submit to Asychronous but it is still not working. Below is the code:
Code before:
<td><input class="buttonred" type="submit" value="Confirm Add" name="submit_message"></td>
<s:form action="upd-message" method="POST" validate="true" onsubmit="validateMsg();return false;" enctype="multipart/form-data">
function validateMsg() {
var frm = document.forms["upd-message"];
frm.actionType.value=message;
[Code] .....
View Replies
View Related
Mar 13, 2015
I was having trouble running some Java programs (not my own) in Windows XP, and in the process I uninstalled and installed JRE versions 6, 7, and 8, one at a time, probably in the order 7, 8, 7, 6, 7. The program that had the original problem only worked in V6, but some other programs stopped working. I went back to V7, and those other programs still didn't work. The message was "the registry refers to a nonexistent java runtime environment installation". The only advice I could find with Web searches was to reinstall the JRE. Needless to say, that didn't work.
So I looked at the registry, and I found that there were still references to V8, which had been uninstalled. The first was
HKEY_CLASSES_ROOTjarfileshellopencommand - (Default) = "C:Program FilesJavajre1.8.0_31binjavaw.exe" -jar "%1" %*
The folder re1.8.0_31 doesn't exist, so I changed it to jre7. That didn't work.
Then I found
HKEY_LOCAL_MACHINESOFTWAREJavaSoftJava Runtime Environment - CurrentVersion = 1.8
I changed this to 1.7, and deleted some following entries such as
HKEY_LOCAL_MACHINESOFTWAREJavaSoftJava Runtime Environment1.8 - JavaHome = C:Program FilesJavajre1.8.0_31
retaining entries such as
HKEY_LOCAL_MACHINESOFTWAREJavaSoftJava Runtime Environment1.7 - JavaHome = C:Program FilesJavajre7
That worked!
So, there is a bug in the installer(s): if you uninstall V8 and install V7, the 'CurrentVersion' isn't set correctly, with the result that the registry points to a non-existent folder. The V8 uninstallation should delete these entries, or the V7 installation should change them.
View Replies
View Related
Jun 30, 2014
I have installed and tested j2se jdk8 u5 on my Windows 7 64 bit laptop and successfully tested in Eclipse with a quick Hello World.
JAVA_HOME = C:Program FilesJavajdk1.6.0_25
When I try to install j2ee jdk7 sdk7 I get
Error: Could not find the required version of the Java(TM) 2 Runtime Environment in '(null)'
View Replies
View Related
Feb 25, 2015
I want to create off-screen images by Canvases in multi-thread environment.
I know that I use methods of GraphicsContext2D to draw on Canvas. Can I do this on Canvas which is not added to Scene ?
How can I get an image from a canvas after I invoke GraphicsContext2D methods? Can I get images in multi-thread environment ?
View Replies
View Related
Feb 18, 2014
I have a task of returning US holiday based on the given date and this utility will be used in a multi thread environment. I have written as below, how to know if my code breaks at any given point by multiple threads
Declared Enum
public enum Holiday {
CHRISTMASDAY("Christmas Day"),
GOODFRIDAY("Good Friday"),
INDEPENDENCEDAY("Independence Day"),
LABORDAY("Labor Day"),
NONE("None");
[code]...
I tried to test this with few concurrent threads, and noticed that the DB call is made for the very first time or when the year being requested is not same as the cached year. But I wanted to see, if this is properly synchronizing and would not fail in any case. My intention is to make a singleton HolidayCalendar, and also synchronized well enough so that every thread using this class gets the required data without blocking each other.
View Replies
View Related