On Monday, October 6, 2003, 7:07:46 AM, Juraci wrote:

> Hi All,

> Since yesterday night i'm trying to use Middlegen, but there is
> something i'm missing. Middlegen opens the GUI window, I click on
> "Generate" and it seems to work. After closing the window, the rest
> of the process begin done, but stops when it tries to compile Struts
> files, hanging with errors like this:

>     [javac] symbol  : variable MIN_VALUE
>     [javac] location: class java.lang.Boolean
>     [javac]       if(getStatus() == java.lang.Boolean.MIN_VALUE) {
>     [javac]                                          ^
>     [javac] 
> /opt/downloads/middlegen-2.0-b1/contatos/build/gen-src/contatos/web/struts/TelefoneForm.java:32:
>  cannot resolve symbol

> With the example "airline", everything is done successfully, so, i
> guess that the problem is on my build.xml. I've uploaded the
> build.xml and build.properties to www.partenon.com.br/contatos/, to
> someone verify if its all ok.

I don't think it's your build.xml.  I had a similar problem compiling
at the struts stage.  Middlegen or XDoclet - not sure which - had
generated some code like the following:

    java.math.BigDecimal strands = ...;
  
    java.math.BigDecimal id = new java.math.BigDecimal(strands);

Java, in its infinite wisdom, can't construct a BigDecimal from
another BigDecimal.  Really.  So I hand-edited the code and moved on.
I suggest you might do the same.  That means changing your build.xml
so break the chain of dependencies.  You don't want Middlegen being
run every single time or you'll trash your hand-edited code.

The problem I encountered was already reported on sourceforge.

Cheers,
Gavin



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
middlegen-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/middlegen-user

Reply via email to