active questions tagged j2ee - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:34:06Z http://stackoverflow.com/feeds/tag/j2ee http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1864161/gwt-extending-decoratorpanel-and-adding-to-rootpanel 0 GWT extending DecoratorPanel and adding to rootPanel John 2009-12-08T02:07:16Z 2009-12-08T03:40:28Z <p>I am new to using gwt, although I am starting to get the hang of things. One perplexing situation I came across today was the following. (This is abbreviated to simplify my question)</p> <pre><code> public class MyPanel extends DecoratorPanel{ public MyPanel(){ final TextBox tb = new TextBox(); tb .setText("test"); this.add(tb); tb .setFocus(true); } } public class ClassA implements EntryPoint(){ public void onModuleLoad(){ MyPanel mp = new MyPanel(); RootPanel.get("reference").add(mp); } } </code></pre> <p>for some reason my problem occurs at the line:</p> <pre><code>RootPanel.get("reference").add(log); </code></pre> <p>I get a null pointer exception...the lines of the stack above the line that points at the line above is:</p> <pre><code>java.lang.NullPointerException: null at com.google.gwt.user.client.ui.Panel.doAttachChildren(Panel.java:163) at com.google.gwt.user.client.ui.Widget.onAttach(Widget.java:259) at com.google.gwt.user.client.ui.Widget.setParent(Widget.java:393) at com.google.gwt.user.client.ui.Panel.adopt(Panel.java:119) at com.google.gwt.user.client.ui.ComplexPanel.add(ComplexPanel.java:86) at com.google.gwt.user.client.ui.AbsolutePanel.add(AbsolutePanel.java:80) </code></pre> <p>So I thought this would just be a simple problem however, when I put all the code from MyPanel into ClassA in the onModuleLoad method and just created a DecoratorPanel in there, there was no null pointer exception. Why is this, and how can I fix it. It seems like a simple problem but I am not sure which direction to go. Anyone have an idea? </p> <p>The null pointer exception happens on this line in Panel:</p> <p>for (Iterator it = iterator(); it.hasNext();) {</p> http://stackoverflow.com/questions/1861834/j2ee-or-net-mvc-which-one-to-choose-pros-and-cons 0 J2EE or .NET MVC? Which one to choose? Pros and Cons? rgoytacaz 2009-12-07T18:10:17Z 2009-12-07T21:25:37Z <p>Hello There,</p> <p>I'm starting to develop some applications for the web, although I'm not a programmer, I'm a project manager, I do try to understand the technology behind the projects that I'm engaged in, to not blindly accept someones input.</p> <p>I do understand that I can choose from another Web-centric frameworks, like php, python and rails, or view frameworks other than those mentioned here,but I'll just stick with these for now, until I get comfortable.</p> <p>Feel free to suggest anything that you think is a better option.</p> <p>I do have experience with C#.NET and Java, but EE is a whole different story.</p> <p>I'm currently looking at JBoss Seam (J2EE) and .NET MVC.</p> <p>From what I could check on, MVC is pretty tight seems really productive, its concise, its components work together very well.</p> <p>Now looking at J2EE, things are pretty much scattered around, everyone tries to create some really new approach to solve the problems instead on contributing to some already in progress project, which results in...</p> <ul> <li><p>Too many options and with that excessive number of configuration files (XML)</p></li> <li><p>Everyone tries to name there approach to solve something, so in the end we get, BEANS, WEBBEANS, JAVABEANS, EJB, WELD, CDI, EL and a whole bunch of others acronyms that you need to keep up with.</p></li> <li><p>Components don't play well together</p></li> <li><p>You need to end up choosing a framework or building your own boilerplate code to glue all the stuff together.</p></li> </ul> <p>Just a reminder, I'm checking JBoss Seam vs MVC 2. Feel free to point me in another framework direction.</p> <ul> <li><p>Java is still on URL Rewriting technique while .NET is using URL Routing (which seems way better and easier to work with), thus making SEO techniques harder to implement.</p></li> <li><p>Working with views in Java still isn't type safe, while in .NET that can be accomplished.</p></li> <li><p>JSF doesn't give you the power to code html if you want/has to. A basic search told me that it has a lot of implementation details that you need to be aware about when trying to use plain HTML in JSF and I think (correct if I'm wrong, please) that you would lose the EL capabilities in plain HTML.</p></li> <li><p>Another thing I would like to be able to do in views, is make them call Java Methods, that way I could write my own view helper methods to implement the html the way I want it to(Maybe this is possible and I don't know, that's the point of this post).</p></li> <li><p>Handling model is easier in java, annotations, hibernate, etc.. (Although MVC 2 is comming out with all these annotations based programming model in mind)</p></li> <li><p>Unit testing is hard in Java, code is ugly and you rely on ANT builders to run your tests, while this is done inside the framework very handy on .NET</p></li> </ul> <p>I would like some experienced peers point of view on these technologies and perhaps use this space to some further discussion on the topic.</p> http://stackoverflow.com/questions/1844403/brand-new-to-gwt 0 Brand new to gwt John 2009-12-04T01:50:54Z 2009-12-06T04:38:35Z <ol> <li><p>Can you go from module to module with gwt. For instance when you click to submit login information can you get rid of that ui and go to a new ui for whatever your app happens to do? </p></li> <li><p>Also are there any books or tutorials anyone recommends? I have a good understanding of how the ui structures work, but am confused when it comes to things like the *.gwt.xml file and the web.xml. I want to learn as quickly as possible so any advice would be appreciated.</p></li> </ol> http://stackoverflow.com/questions/1848327/httpsession-setmaxinactiveinterval-not-working-in-tomcat-6 0 HttpSession.setMaxInactiveInterval not working in Tomcat 6 haruspex 2009-12-04T17:03:29Z 2009-12-05T04:55:22Z <p>I'm trying to adjust the session timeout using HttpSession.setMaxInactiveInterval and it's not working.</p> <p>Here is my code (Groovy), which is executing without exceptions:</p> <pre><code>def paramValue = WebAttributes.REQUEST.getParameter('maxInactiveSeconds'); println 'paramValue=' + paramValue; if (paramValue != null) { def seconds = Integer.parseInt(paramValue); WebAttributes.REQUEST.getSession().setMaxInactiveInterval(seconds); } </code></pre> <p>Some details:</p> <ul> <li>Tomcat 6.0.16</li> <li>This is happening in a webapp separate from the 'normal' one (i.e. with visual content), but I have defined emptySessionPath="true" so the session *should* be shared across webapps</li> </ul> <p>thanks,</p> <p>haruspex</p> http://stackoverflow.com/questions/1118659/different-connection-pools-for-read-write-access 0 Different connection pools for read / write access Joshua 2009-07-13T10:13:05Z 2009-12-04T09:54:36Z <p>An EJB3 stateless session bean exposing CRUD operations for an entity bean will contain read / write methods which go against a single connection pool. If you would like to have your read &amp; write operations go against different databases for scalability purposes, how do you accomplish this at the code level. Any pointers to appropriate design patterns here?</p> <p>Predominantly most of the sites, push read (i.e. select operations) only content to point to different database servers (i.e. by replicating the data from the master database to the slave database). </p> <p>How do you acheive code separation / UI separation to exploit the same, since all persistence relevant code (i.e. insert / update /delete) needs to talk to the master database server and all read operations go to the slave database servers</p> http://stackoverflow.com/questions/1845059/how-to-add-a-persistence-unit-in-jndi-for-ejb-modules 0 How to add a persistence unit in jndi for ejb modules unknown (google) 2009-12-04T05:36:05Z 2009-12-04T07:43:21Z <p>Hi!</p> <p>I am working on a simple ejb module, sample code where i am trying to implement CURD operation through a SOAP webservice. My problem is like this. I have a persistence unit defined in persistence.xml file. </p> <p>Here is the code for my implementation. The problem is that I cannot create the instance of PersistenceService class since, the persistence unit name is not present in the jndi listings. </p> <p>If instead of using code injection if I use</p> <p>EntityManagerFactory emf = Persistence.createEntityManagerFactory(PU_NAME); em = emf.createEntityManager();</p> <p>The code runs but, then the transaction is managed by the container. I was reading through some tutorials and they mentioned that in this scenario if the user wants to rollback the transaction later, he cannot do so.</p> <p>Any pointers?</p> <h2>// Source code for users.java</h2> <pre><code>@WebService() @Stateless() public class users { public users() { } /** * Web service operation */ @WebMethod(operationName = "addUser") public Integer addUser( @WebParam(name = "UserName") final String UserName, @WebParam(name = "LastName") final String LastName) { DatabaseEntityManager dem = new DatabaseEntityManager(); Integer result = null; try { result = dem.addUser(UserName, LastName, false); dem.commitTx(); return result; } catch(Exception E) { } return new Integer(-1); } </code></pre> <p>//source code databaseentitymanager</p> <pre><code>public class DatabaseEntityManager { PersistenceService ps_bck = null; public DatabaseEntityManager() { } public SiteUsers addUser( String Username, String LastName, boolean commit) throws Exception { AppUser appUser = new appUser(UserName, LastName); //AppUser is an entity class PersistenceService ps = PersistenceService.getInstance(); try { ps.beginTx(); EntityManager em = ps.getEntityManager(); em.persist(appUser); if (commit) ps.commitTx(); else ps_bck = ps; } catch (Exception E) { ps.rollbackTx(); } finally { ps.close(); } return appUser.getId(); } void commitTx() throws Exception { try { ps_bck.commitTx(); } catch(Exception E) { throw E; } finally { ps_bck =null; } </code></pre> <p>} }</p> <p>//Source code for PersistenceService - borrowed from sample code generated by Netbeans ide</p> <p>public class PersistenceService { private static String DEFAULT_PU = "pers-ejbPU";</p> <pre><code>private static ThreadLocal&lt;PersistenceService&gt; instance = new ThreadLocal&lt;PersistenceService&gt;() { @Override protected PersistenceService initialValue() { return new PersistenceService(); } }; private EntityManager em; private UserTransaction utx; private PersistenceService() { try { //This code runs // EntityManagerFactory emf = Persistence.createEntityManagerFactory(DEFAULT_PU); // em = emf.createEntityManager(); //This code throws an exception this.em = (EntityManager) new InitialContext().lookup("java:comp/env/persistence/"+ DEFAULT_PU); this.utx = (UserTransaction) new InitialContext().lookup("java:comp/UserTransaction"); } catch (NamingException ex) { throw new RuntimeException(ex); } } /** * Returns an instance of PersistenceService. * * @return an instance of PersistenceService */ public static PersistenceService getInstance() { return instance.get(); } private static void removeInstance() { instance.remove(); } /** * Returns an instance of EntityManager. * * @return an instance of EntityManager */ public EntityManager getEntityManager() { return em; } /** * Begins a resource transaction. */ public void beginTx() { try { utx.begin(); em.joinTransaction(); } catch (Exception ex) { throw new RuntimeException(ex); } } /** * Commits a resource transaction. */ public void commitTx() { try { utx.commit(); } catch (Exception ex) { throw new RuntimeException(ex); } } /** * Rolls back a resource transaction. */ public void rollbackTx() { try { utx.rollback(); } catch (Exception ex) { throw new RuntimeException(ex); } } /** * Closes this instance. */ public void close() { removeInstance(); } </code></pre> <p>}</p> http://stackoverflow.com/questions/1842162/is-it-possible-to-architect-the-web-component-tier-in-j2ee-to-support-different-c 0 Is it possible to architect the web component tier in J2EE to support different client types? Anonymous 2009-12-03T19:04:47Z 2009-12-03T19:10:39Z <p>How can you architect the web component tier in J2EE to support different client types?</p> http://stackoverflow.com/questions/1841274/including-jsp-multiple-head-section 1 Including JSP multiple HEAD section dawez 2009-12-03T16:53:24Z 2009-12-03T18:14:32Z <p>HI</p> <p>I would like to include a jsp page into another jsp. Let's say that I have master.jsp that is including slave.jsp.</p> <p>Since slave.jsp has its own set of section for dealing with Javascript and CSS. Is there a way or maybe another method to merge the master/slave HEADs section into one ? There will be also the same issue with the BODYs section.</p> <p>I have been using sitemesh recently but I think is quite impractical to setup a template for each page.</p> http://stackoverflow.com/questions/809775/what-does-the-servlet-load-on-startup-value-of-0-zero-signify 0 What does the servlet <load-on-startup> value of 0 (zero) signify Vinnie 2009-05-01T00:45:02Z 2009-12-03T18:12:05Z <p>Hi,</p> <p>I am getting a bit confused here. In our application we are having a few servlets defined. Here is the excerpt from the web.xml for one of the servlets:</p> <pre> &lt;servlet> &lt;servlet-name>AxisServlet&lt;/servlet-name> &lt;display-name>Apache-Axis Servlet&lt;/display-name> &lt;servlet-class>com.cisco.framework.axis2.http.FrameworkServlet&lt;/servlet-class> &lt;load-on-startup>0&lt;/load-on-startup> &lt;/servlet> </pre> <p>As per my understanding the value for the has to be a positive integer in order for it to get loaded automatically. I looked up on google but the responses I came across only added to my confusion.</p> <p>-&nbsp; Ashish</p> http://stackoverflow.com/questions/1838215/xss-security-issue 0 XSS security issue Harish 2009-12-03T07:12:51Z 2009-12-03T16:55:13Z <p>When using Cross Site Scripting - XSS in a J2EE struts 2.0.9 application . When I put <code>&lt;Script&gt;</code> tag in the URL it is executing the JavaScript which is a security threat. Is there any solution to overcome this problem apart from moviing to higher version of Struts.</p> http://stackoverflow.com/questions/1835764/java-session-management 0 java session management Casey 2009-12-02T20:59:37Z 2009-12-02T21:20:32Z <p>I am working on a small webapp for fun, using just Java Servlets at the moment. I have two pages, test1 and test2. At the moment I am creating a new session in test1 like this:</p> <pre><code> HttpSession session = request.getSession(true); if (session.isNew() == false) { session.invalidate(); session = request.getSession (true); } </code></pre> <p>In test2 I am retrieving the session like so:</p> <pre><code> HttpSession session = request.getSession(false); if (session == null) { throw new ServletException ("No session."); } </code></pre> <p>So the problem is that if I go to test2 first, I am always getting a valid session because the browser creates one. I want to restrict the flow from test1 to test2 so that I have to go to test1 first. My plan is to eventually create a login page that will create the session, but the problem I am seeing here would still be present.</p> <p>How should I handle this? I would like any ideas to not include 3rd party libraries. I'm doing this as a learning exercise.</p> <p>Thanks!</p> http://stackoverflow.com/questions/127120/spring-vs-jsf 4 Spring vs. JSF Ryan Thames 2008-09-24T13:28:19Z 2009-12-02T17:19:41Z <p>I have a dilemma at my job. We're looking to integrate two different J2EE projects and they both use different frameworks for the web component. We're also looking to add more dynamic capability/AJAX to it. One uses JSF and the other uses Spring. Basically we're trying to pick one of the projects and integrate them using that technology. So I have two questions:</p> <p>1) Is JSF and Spring mutually exclusive? Is it one or the other? 2) If so, which one is better?</p> http://stackoverflow.com/questions/1823464/some-questions-for-j2me 0 Some questions for j2me James LIU 2009-12-01T01:20:18Z 2009-12-02T15:10:53Z <p>Dear all,</p> <p>I do have some questions which always confuse me a lot.</p> <p>(1) Why when we install j2me, we have to install jdk first? [for my understanding, they are independent 2 versions, one is of embedded, another is for desktop application]</p> <p>(2) How to install the j2me environment into the phone or embedded device? Do we need to install the jdk firstly? (It seems that jdk cannot be installed on phone and embedded devices).</p> <p>(3) what is the relationship among j2me, j9, phoneMe, jamVM...? When use this in the embedded devices, the pre-requisites is also the JDK? (you have to install the jdk firstly?)</p> <p>Thank you very much!</p> http://stackoverflow.com/questions/1821178/java-ajax-webapp-security 0 Java AJAX webapp security Mike Warren 2009-11-30T17:26:44Z 2009-12-02T15:03:47Z <p>I'm experimenting with creating a simple AJAX Java webapp. </p> <p>I'd like to use the container managed security provided by the Servlet container, but having investigated it have a feeling that it isn't going to work how I'd like it to. Basically I'd like to be able to have a login prompt on the main page, without the user having to navigate away to a login form.</p> <p>As an example imagine a simple message board application and a user who wants to post a new message enters the text directly into a form on the screen, when it comes to pressing the submit button I would like be able to make an ajax call to determine if the user is already logged in, if not then I'd like to display a login div on the same page to allow the user to log in without navigating away to a separate login page.</p> <p>The form based login provided by the servlet container seems to be based on the assumption that the user will be redirected to a separate login page at the point where they try to access something that is "secured", which isn't what I want to happen.</p> <p>So I suppose what I'd like to know is if there is a standard way of allowing users to login within a single page ajax application using the container managed security, or some 3rd party library? I'm going to have a look at Spring security, but at first glance it seems to have the same problem that I'm having with the standard security. </p> <p>EDIT:Found this very useful, think it may be the basis of my solution <a href="http://www.jroller.com/sjivan/entry/ajax%5Fbased%5Flogin%5Fusing%5Faceci" rel="nofollow">http://www.jroller.com/sjivan/entry/ajax%5Fbased%5Flogin%5Fusing%5Faceci</a></p> http://stackoverflow.com/questions/1831476/modifying-amf-response-at-runtime-how-to 0 Modifying AMF response at runtime - How to? Lohit 2009-12-02T08:35:37Z 2009-12-02T14:16:28Z <p>I have built a simple flex application (using BlazeDS) which displays "Person" details by invoking a java service using flex remoting. So, my Person class looks something like this:</p> <pre><code>class Person { public int age; public String name; } </code></pre> <p>As a java developer, here is my understanding: When I run the front flex app in my webapp, an RPC call is executed and BlazeDS does the hard work of invoking the right method, obtaining the result as an object, converting the object to AMF format (serialization). And, then the web/app server sends back this response to the requesting app over http. The flex app now does the task of deserializing the object received in AMF format and somehow make use of it. </p> <p>Here is my question: I would like to modify the response before it reaches the Flex application by modifying the attributes of the person object. I have a Filter in place to do this. However, I am not sure as to how I would deserialize the AMF stream, modfiy the object, serialize the object back into the stream / reconstruct the stream somehow. </p> <p>Is there a way to doing this? Where should I start?</p> <p>PS If the question was too confusing, here is a shorter version: How do I modify the response stream of content type AMF-X, before it reaches a flex app using a java filter?</p> http://stackoverflow.com/questions/1832385/error-marshalling-return 0 error marshalling return; mur 2009-12-02T11:35:57Z 2009-12-02T11:58:09Z <p>I am getting the following exception when I tried to execute one my service in my server which is deployed as EJB2.0 stateless session bean.</p> <pre><code>Error executing services::error marshalling return; nested exception is: java.io.NotSerializableException: xxx.xxx.xxx.PmsService </code></pre> <p>here <code>xxx.xxx.xxx.PmsService</code> is my class which is already implementing <code>java.io.Serializable</code> interface</p> <p>can you please help me in getting this resolved.</p> <p>MUR</p> http://stackoverflow.com/questions/1829842/which-is-more-secure-or-more-used-net-or-j2ee 0 Which is more secure or more used .net or J2EE? [closed] Sikender 2009-12-02T00:08:45Z 2009-12-02T02:23:18Z <p>I asked this question because I want to know which language is better in terms of security.</p> <p>I understand that this is a subjective question, however it frequently comes to mind when we are studying, and comparing these languages, or at the time of interview.</p> http://stackoverflow.com/questions/1826647/how-to-use-quartz-with-ejb3 1 How to use Quartz with EJB3 ? Eligriv 2009-12-01T14:46:13Z 2009-12-01T20:14:18Z <p>Hello everyone.</p> <p>I want to be able to :</p> <ul> <li>define different jobs and triggers.</li> <li>modify the expirations dates and intervals on demand</li> <li>pause or cancel an execution (trigger)</li> </ul> <p>the jobs would be ejbs or call ejbs and i would want to manage everything from the website (the user will have to define the executions)</p> <p>So i looked at the timerservice, timerobjects, timer and timerhandle. But i think it can't answer to all my needs</p> <p>Quartz, on the other hand, allows me to do every thing that i want, but i haven't the slightest clue on how to integrate this into my jboss. I read that quartz uses its own threadpool, and i don't know how to handle all this.</p> <p>I use Jboss Seam in my project, but the seam/quartz integration is very limited (or the documentation is) and not 100% safe (seen on their forum : <a href="http://seamframework.org/Community/SeamQuartzJobsStopsRunningAfterSomeTime" rel="nofollow">'run forever' tasks end after only a few weeks</a>)</p> <p>If someone managed to integrate a good scheduler into his application server (jboss is a plus) and could give me directions, advices, or even code snippets, i would be thrilled.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1823625/j2ee-war-file-redeployment-changes-not-reflected 0 J2EE war file redeployment changes not reflected Sylph 2009-12-01T02:21:22Z 2009-12-01T09:34:43Z <p>Hi all,</p> <p>I created the the file index.jsp as below</p> <pre><code>&lt;form action="" method="POST"&gt;&lt;br&gt; First Name: &lt;input type="text" name="firstName" size="20"&gt;&lt;br&gt; Surname: &lt;input type="text" name="surname" size="20"&gt;&lt;br&gt; &lt;input type="submit" value="Submit"&gt;&lt;br&gt; &lt;/form&gt; </code></pre> <p>I export it to .war and everything works fine. Then later I modified index.jsp, added in the form action to </p> <pre><code>&lt;form action="GreetingServlet" method="POST"&gt;&lt;br&gt; First Name: &lt;input type="text" name="firstName" size="20"&gt;&lt;br&gt; Surname: &lt;input type="text" name="surname" size="20"&gt;&lt;br&gt; &lt;input type="submit" value="Submit"&gt;&lt;br&gt; &lt;/form&gt; </code></pre> <p>I exported it again to .war, but the changes were not reflected. When I view source, the form action is still equal to blank. I have restarted apache as well. I view the log, it shows me that it has been redeployed.. but the changes were not reflected.</p> <p>I have tried with different browsers, restart eclipse to see if the changes are saved, restart apache. Any advice? Thank you</p> http://stackoverflow.com/questions/1820771/when-is-spring-tomcat-not-powerful-enough 5 When is Spring + Tomcat not powerful enough? Peter B 2009-11-30T16:16:17Z 2009-12-01T08:19:43Z <p>I've been reading/learning more about Spring lately, and how one would use Spring in combination with other open-source tools like Tomcat and Hibernate. I'm evaluating whether or not Spring MVC could be a possible replacement technology for the project I work on, which uses WebLogic and a LOT of custom-rolled J2EE code. The thing is, I've always suspected that our solution is over-engineered and WAY more complex than it needs to be. Amazingly, it's 2009, and yet, we're writing our own transaction-handling and thread-pooling classes. And it's not like we're Amazon, eBay, or Google, if you know what I mean. Thus, I'm investigating a "simpler is better" option. </p> <p>So here's my question: I'd like to hear opinions on how you make the decision that a full-blown J2EE application server is necessary, or not. How do you "measure" the size/load/demand on a J2EE app? Number of concurrent users? Total daily transactions? How "heavy" does an app need to get before you throw up your hands in surrender and say, "OK, Tomcat just isn't cutting it, we need JBoss/WebLogic/WebSphere"?</p> http://stackoverflow.com/questions/1824177/help-how-to-use-eclipse-effectively 2 [Help] how to use eclipse effectively Bhupi 2009-12-01T05:30:55Z 2009-12-01T06:21:57Z <p>Hi Experts,</p> <p>I've never worked in eclipse for web applications, now I want to create my first web application using J2EE. I am having problems while using <strong>eclipse</strong>, I don't know much about Ant scripts and eclipse workspace. Previously I worked on netbeans which automated all the deployment part. But me seems eclipse is being used mostly in market (may be I'm wrong).</p> <p>What I all want to learn is, how to create Ant scripts and eclipse workspace. And what all library files should be added in the eclipse workspace so that it can effectively use HttpServlet and other classes.</p> <p>Thanks</p> http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net 7 What are the advantages of using J2EE over ASP.net? m_oLogin 2008-11-24T11:09:30Z 2009-11-30T22:37:50Z <p>We are currently planning to launch a couple of internal web projects in the future. Our company's dev teams are mostly experienced in J2EE and have worked with it for years. Today, we have the choice of launching a couple of our projects on .net. I have checked out a couple of sources on the net, and it seems like the "J2EE vs ASP.net" combat brings out as much discord as the overseen "Apple vs Microsoft" or "Free Eclipse vs Visual Studio"...</p> <p>Nevertheless, I have been somewhat quite impressed with ASP.net's abilities to create great things with huge simplicity (for ex. asp.net ajax's demos). No more tons of xmls to play with, no more tons of frameworks to configure (we usually use the famous combo struts/spring/hibernate)... It just seemed to me that ASP.net had some good advantages over J2EE, but then again, I may speak by ignorance.</p> <p>What I want to know is this : What are the real advantages of using J2EE over ASP.net? Is there anything that cannot be done in ASP.net that can be done in J2EE? Once the frameworks are all in place and configured, is it faster to develop apps in J2EE than it is in .net? Are the applications generally easier to maintain in J2EE than in ASP.net? Is it worth it for some developpers to leave their J2EE knowledge on the side and move on to ASP.net if it does exactly the same thing?</p> http://stackoverflow.com/questions/1821571/classpath-java-buld-path-eclipse-and-web-inf-lib-what-to-use-when-and-why 1 CLASSPATH, Java Buld Path (eclipse), and WEB-INF\LIB : what to use, when, and why? sangfroid 2009-11-30T18:35:35Z 2009-11-30T21:32:22Z <p>Hello all,</p> <p>I recently switched to J2EE from .NET, and am confused about where to put JAR files. I know that the CLASSPATH, WEB-INF, and Eclipse's Java Web Path are all places where JARs can be stored, but I'm confused about which folder to use, when, and why.</p> <p>First off, we have the CLASSPATH. I usually set this by going into "Environment Variables" inside "My Computer." I know that this is the default place where the Java compiler looks for JAR files. When I add a folder or a JAR to my CLASSPATH environment variable, why is it ignored by Eclipse, the Java compiler, and the web server?</p> <p>Also, I know that WEB-INF\LIB is a place where you can put JAR files that your web app is going to use. However, I've put JARs in WEB-INF\LIB only to have them be ignored. In what situations should I put JARs into WEB-INF\LIB folder? How do I get Eclipse or the web server to notice them?</p> <p>So far, the only thing that works for me is to actually change the Java Build Path for an Eclipse project. I'll select the JARs I need and hit "Add External JARs." Most of the time when I do this, Eclipse will recognize my JARs and read the classes therein. However, I've run into a bunch of weird random errors while doing this (mostly having to do with dependencies, I think). For some reason, I just get the feeling that this isn't the right way to do things, and that I'm missing some vital piece of information. When should I be manually Adding External JARs inside Eclipse, and when should I be doing things differently? How come Eclipse's Java Build Path doesn't seem to know about the folders in my CLASSPATH environment variable?</p> <p>Really, I would just like to gain a better understanding of the CLASSPATH, Eclipse's Java Build Path, and the WEB-INF/LIB folder -- the purposes they serve, the relationships between them, and where I should be putting my JARs in various situations. I would appreciate any advice you could give me, or any articles that you could recommend.</p> <p>Thank you.</p> http://stackoverflow.com/questions/700476/combining-namespace-based-configuration-with-different-authentication-methods-in 0 Combining namespace based configuration with different authentication methods in spring-security wds 2009-03-31T07:57:02Z 2009-11-30T17:51:35Z <p>I'm trying to get spring-security to work with a project where there is both a form login component needed (for website access) and a http-basic or http-digest component for web services. Now we started out with the namespace based configuration, e.g. a spring-security.xml file with stuff like:</p> <pre><code>&lt;http auto-config="true"&gt; &lt;intercept-url...&gt; ... &lt;/http&gt; </code></pre> <p>But you have to go with form-based as default or http-basic as default (i.e. this only configures one filter chain). What I want is for some stuff to never redirect to a form and just use http-basic or equivalent. The manual does seem to <a href="http://static.springframework.org/spring-security/site/reference/html/supporting-infrastructure.html#filters" rel="nofollow">cover this</a>, only if you follow their advice, you'll end up having to define own filter chains for everything.</p> <p>So I was wondering, is there really no other way? Is there perhaps a way I can reuse the filter chain introduced by the http element for those elements that can still use the old scheme? The namespace based config is really handy for us since it's easy to read and understandable, whereas a list of bean definitions is less so...</p> http://stackoverflow.com/questions/1818836/j2ee-project-flow 0 j2ee project flow Rajendra Prakash 2009-11-30T09:51:18Z 2009-11-30T09:51:18Z <p>I need a project flow (If project developed with jsp , servlets ,struts , hibernate) Like... Request->controller->dao->dto-> db</p> http://stackoverflow.com/questions/1771324/eclipse-as-an-ide-what-do-you-find-missing-as-a-beginner-in-java 9 Eclipse as an IDE - What do you find missing as a beginner in Java? Jay 2009-11-20T15:39:55Z 2009-11-30T07:53:43Z <p>I am working on a solution that aims at solving problems that newbie programmers experience when they are "modifying code" while bug fixing / doing change requests, on code in production. Eclipse, as we all know is a great IDE. Features such as Code Completion, Open Declaration, Type Hierarchy, Package Explorer, Navigator, Finding References etc aids people in fixing things quicker compared to say using something like Textpad.</p> <p>If you are a newbie java programmer and you are using Eclipse IDE, what areas of the Eclipse IDE do you think were less helpful/ less intuitive? If you are a seasoned programmer, what are the common issues that newbies look up to you to solve for them? </p> <p>Please ignore issues related to : Domain Expertise (Business Knowledge), Infra( where to test your change etc), performance related (eclipse search being slow,etc), Skill level in a particular language (think of the developer as a noob) ... and think one language - Java</p> <p>I did a local survey in my small team and here are some: </p> <ul> <li>Newbies using Eclipse to handle code that is written to interfaces where the implementation is supplied at runtime. Doing a 'Open Declaration' will always show you an interface. This could be confusing at times.</li> <li>Eclipse is not intuitive while developing EJBs. Sure, you know all you have to do to create a new bean is to right click and 'Create Bean', however, once created it shows no contextual help to what the next step should be. For instance, generating stubs.</li> <li>When Data Source Mapping with entity beans, changing something screws up the entire flow of things and eclpise never complains / hints.</li> <li>Developing applications that make use of Struts, eclipse doesn't tell you that when you change struts-config.xml, particular web flow would get affected.</li> </ul> <p>At this point, to me, as someone who is interested in collecting opinions for my research, it appears as if Eclipse could use more 'contextual runtime hints'.</p> <p>I am sure the community would have a lot more to add... Please add more of your negative experiences (just from the code change perspective). </p> <p><strong>EDIT:</strong> <strong><em>I guess, my question was too lengthy and confusing. I am gonna rephrase it a bit and keep it short:</em></strong></p> <p>While "making a code change" (not analogous to code formatting, infra related activities, CVS etc... say something like refactoring), what feature(s) of eclipse IDE did you not like / hate the most? Here are the examples: </p> <ul> <li>When modifying code that has been written to interfaces: 'Open Declaration /F3 on an object instance shows you the interface when the implementation is supplied at runtime'.</li> <li>When changing apps using EJBs: No contextual help </li> <li>When changing apps using MVCs(Spring / Struts) : No warnings about change impact.</li> </ul> http://stackoverflow.com/questions/1528206/how-to-load-themes-from-a-database-in-spring-mvc-based-on-user-agent-etc 0 How to load themes from a database in Spring MVC based on user-agent , etc tariqj 2009-10-06T21:28:33Z 2009-11-29T15:00:03Z <p>Hi</p> <p>I am brand new to Spring web MVC. I am trying to create a simple 1 paged site that will check the users browser and display the current theme for that browser. </p> <p>If its a mobile app, I need to allow the user a button to switch to the regular site. </p> <p>Also the current theme for mobile and non-mobile is stored in a database, which includes the start date, end date and the theme name. The theme name is the folder where the theme's resources are located. </p> <p>Being a beginner I have never used themeresolver. </p> <p>Your help is much appreciated.</p> http://stackoverflow.com/questions/1800774/how-to-optimize-activemq 0 How to optimize activemq Marcos Roriz 2009-11-25T23:56:22Z 2009-11-28T15:19:18Z <p>I'm using ActiveMQ on a simulation of overloading servers in Java. And mainly it goes ok, but when I get over 600 requests the thing just go WTF! </p> <p>I think the bottleneck is my Master Server which is this guy below. I'm already reusing the connection and creating various sessions to consume messages from clients. Like I said, I'm using about 50-70 sessions per connection, reutilizing the connection and queue. Any idea of what I can reuse/optimize of my components/listener below?</p> <p>The architecture is the follow:</p> <p>* = various</p> <p>Client ---> JMS MasterQueue ---> * Master ---> JMS SlavaQueue ---> * SlaveQueue</p> <p>Mainly I'm creating a Temp Queue for each session of Master --> Slave communication, is that a big problem on perfomance?</p> <pre><code> /** * This subclass implements the processing log of the Master JMS Server to * propagate the message to the Server (Slave) JMS queue. * * @author Marcos Paulino Roriz Junior * */ public class ReceiveRequests implements MessageListener { public void onMessage(Message msg) { try { ObjectMessage objMsg = (ObjectMessage) msg; // Saves the destination where the master should answer Destination originReplyDestination = objMsg.getJMSReplyTo(); // Creates session and a sender to the slaves BankQueue slaveQueue = getSlaveQueue(); QueueSession session = slaveQueue.getQueueConnection() .createQueueSession(false, Session.AUTO_ACKNOWLEDGE); QueueSender sender = session .createSender(slaveQueue.getQueue()); // Creates a tempQueue for the slave tunnel the message to this // master and also create a masterConsumer for this tempQueue. TemporaryQueue tempDest = session.createTemporaryQueue(); MessageConsumer masterConsumer = session .createConsumer(tempDest); // Setting JMS Reply Destination to our tempQueue msg.setJMSReplyTo(tempDest); // Sending and waiting for answer sender.send(msg); Message msgReturned = masterConsumer.receive(getTimeout()); // Let's check if the timeout expired while (msgReturned == null) { sender.send(msg); msgReturned = masterConsumer.receive(getTimeout()); } // Sends answer to the client MessageProducer producerToClient = session .createProducer(originReplyDestination); producerToClient.send(originReplyDestination, msgReturned); } catch (JMSException e) { logger.error("NO REPLY DESTINATION PROVIDED", e); } } } </code></pre> http://stackoverflow.com/questions/1805246/gxt-j2ee-hosted-mode 0 gxt + j2ee hosted mode Pecc 2009-11-26T19:10:53Z 2009-11-27T12:09:31Z <p>Hi.</p> <p>I'm trying to develop a j2ee+gxt application. I have an rpc call which calls a session bean's method. If I compile the project and run it in the browser, it works fine, but when I use hosted mode I get an exception like this: (edited for readability)</p> <p>Exception while dispatching incoming RPC call</p> <p>...</p> <p>Caused by: java.lang.NullPointerException: null at org.Pecc.server.services.AppServiceImpl. getUserEmailByName(AppServiceImpl.java:53)</p> <p><strong>Line 53</strong> is:</p> <pre><code>return appSessionBeanBean.getUserEmailByName(name); </code></pre> <p>It's like the session bean can't be reached. Note that I have GWT4NB plugin and use it's "GWT hosted mode (<strong>w/o a JEE server</strong>)" command, but I have glassfish running and the ejb module deployed in it. Shouldn't it be enough to work? If I remember right, I was able to use my ejb module in hosted mode at some point.</p> <p>Any thoughts?</p> <p>Thanks, Pecc</p> http://stackoverflow.com/questions/1806598/how-to-add-points-and-markers-dynamically-to-google-maps-from-jsf 0 How to add Points and Markers Dynamically to Google Maps from JSF Omer 2009-11-27T03:22:24Z 2009-11-27T06:06:26Z <p>I have an app in J2EE with a couple of projects. Got my .war project that communicates with a EJB business project which has access to some Data.</p> <p>I have an entity which has some information about places, and I want to show a collection of those places in a single map on a JSF page. </p> <p>I have a Collection of coordinates to be assigned as points on a polyline in Google maps, and I've got this collection as a return of a java function of the jsf page, but I dont know how to get this collection from jsf and then how to make the map work</p> <p>I'll be very greatful if someone can give me some jsf code as an example.</p> <p>(and if someone knows how to set the autoReshape attribute for maps in jsf using javascript, please tell me the secret!!!!)</p> <p>Thanks a lot.</p>