I have read through several reviews on Amazon and some books seem outdated. I am currently using MyEclipse 6.5 which is using Eclipse 3.3. I'm interested in hearing from people that have experience learning RCP and what reference material they used to get started. Thanks in advance. Bruce
...
I have a table in my MYSQL database which does not have a primary key, but has a unique key on two columns. When using MyEclipse's Hibernate reverse engineer tool to create a mapping for that table, it generates two classes, one for named after the table itself, and one with an "Id" suffix. It seems most of the useful methods ended up ...
I have been using MyEclipse for a number of years. I am coming to the conclusion that I would rather ditch MyEclipse and revert to plain old Eclipse, except for one detail: MyEclipse's Tomcat integration. Does anyone know of an Eclipse plugin that would provide such integration?
Here's what my current MyEclipse setup does, which I wou...
I have an HTML file with a couple of external JavaScript files. Here's an example, somewhat simplified from the real HTML and JavaScript files:
<head>
<title>Control Page</title>
<script language="JavaScript" src="control.js"></script>
<script language="JavaScript">
var myWindow;
var controlForm;
function onPageLoad(...
I need to know which is the language used in the template code used for generating getter/setter methods in MyEclipse.
1) I want to use my static utility method in the getter/setter method template code of myeclipse.
2) I want to invoke my utility method only when the field data type is String.
...
I have a slow memory leak in my Java application. I was wondering if this could be caused by not always closing the Entitymanager when used. However using myeclipse to generate DB code, I'm getting methods like this:
public Meit update(Meit entity) {
logger.info("updating Meit instance");
try {
Meit result = getEntityManager().merge...
I use Hibernate with Java.
I have two tables which are associated with foreign keys.
Table: country
Fields: ID, Name
POJO class name : Country
POJO class properties: id, name, cities
Table: city
Fields: ID, Name, CountryID
POJO class name : Country
Then I use "hibernate reverse engineering" of MyEclipse. It creates DAOs, abstracts ...
My organization has made an upper level decision to move to maven as the standard build tool for Java projects. I have been tasked with helping our local teams migrate projects over to maven.
One of the core tools that is in play is the MyEclipse IDE. MyEclipse seems to have had a "fun" history with the maven team as evidenced in vari...
Hello,
I have been using Weblogic as my company used it. Now I want to try JBoss as an alternative. I'm using Eclipse with MyEclipse 7.1 plugin. I downloaded and unzipped JBoss 5.0.1GA with Java JDK 1.5.0.14. I set the server up using MyEclipse interface and got the following error (couldn't find solution elsewhere online):
10:42:54,24...
Since 2005 we are using MyEclipse as our standard development tool.
We use it mainly for for Java applications, but from time to time
we use it also for Groovy and may be other stuff, like DB navigator, etc.
Our licences should be renewed in a couple of months and I am rethinking
the decision of using it. A nice feature of MyEclipse w...
Is there anyone who have encountered "Processing Dirty Regions" error in MyEclipse? Actually everytime i press a key in JSP it shows a popup, which says
An internal error occurred during: "Processing Dirty Regions".
org/eclipse/wst/sse/ui/internal/reconcile/validator/ValidationHelper
By googling i found that i have to rename a jar , i ...
I am using MyEclipse, and I have a local Glassfish server controlled by the IDE.
When I am at work, having a fast internet connection, the server starts quickly.
However, when I am at home, not having as fast an internet connection, the server starts slowly.
The server is on my local box, why would the internet connection speed matter ...
I'm picking up support on a project that is currently built with MyEclipse and has a decent sized development team that has been working without any CI processes.
From what I can tell, the MyEclipse folks don't see any value in being able to build outside of the Eclipse platform, which makes no sense at all to me. Continuous Integratio...
I must be really stupid, but I'm at my wits' end with a JPA issue, using MyEclipse 7.5.
I am accessing a DB2 database (on an AS400) via JPA. I have reverse-engineered a simple table to provide a DAO with some precision "find" methods. So far so good.
If I run a SELECT statement over the table thus, I get 4 rows:
SELECT * FROM MyTable ...
I am a newbie on MyEclipse id.
On my system, I have installed sun jre(not jdk) and MyEclipse.
I have searched for javac.exe in installed files of MyEclipse in Program Files (windows platform), but there also I got no results found for javac.exe
I have no clue, that which tool MyEclipse is using to compile .java files.
1 more question...
Can I have incremental deployment with JBoss AS?
Currently, the only reasons I pay for a MyEclipse license is their "Smart Deployment" feature where if I make a small correction to a JSF page, I don't have to redeploy the whole app, but instead my IDE syncs the change.
Why isn't there something similar to NetBeans???
...
How can I modify the conditions for which MyEclipse will throw up warning flags? I'd be happy to hear a generic solution, but here is my specific problem for the curious/if it turns out to be relevant:
<html xmlns="http://www.w3.org/1999/xhtml">
<wicket:panel>
<p>
<object type="text/html" width="750" height="360" wicket:id="htmlRend...
My computer lags for several seconds when I open an HTML file in MyEclipse, or make a major change to a file that's already open. I suspect that the WYSIWYG part of the visual HTML designer is responsible; is there a way to turn that off but retain the color-coded text editor/formatter? I also don't care about the "preview" feature, if...
The System's hosts file is fine, 127.0.0.1 localhost is there...
Ping 127.0.0.1,or my IP, the result is also fine..
Myeclipse's version is 8.0 and I'm just using the Tomcat within it.
A simple JSP+Javabean web project so is deployed.
Now the situation is when I open MyEclipse and start the Tomcat, I can access my site throuth
http://...
In my new project i work on, we use the myeclipse on top of Eclipse IDE.
Our architecture includes jsp, jsf, ajax, spring framework with hibernate persistence and also has blaze for some business validations. We also expose Web services. For the build we have the maven and ant. The server used is weblogic.Also like to mention that we u...