I am experiencing something similar to Samuru.
I create a war with Ant with this build.xml:

<project
    name="&lt;projectname>"
    basedir="."
    default="buildwar" >

    <target
        name="default"
        depends="buildwar, deploy" >
    </target>

    <target name="buildwar" >
        <war
            basedir="war"
            destfile="Admin.war"
            webxml="war/WEB-INF/web.xml" >
            <exclude name="WEB-INF/**" />
            <webinf dir="war/WEB-INF/" >
                <include name="**/*.jar" />
                <include name="**/classes/**" />
            </webinf>
        </war>
    </target>

    <target name="deploy" >
        <copy
            file="Admin.war"
            todir="." />
    </target>

</project>

Once the war is created I deploy it with Tomcat. When I open the page in a 
browser I see the old version of the code.
I have tried several things:
    · Erase the war/WEB-INF/classes/ directory, Project -> Clean and then 
create a new war with the same results.
    · Clean the cache of the browser and reloading with ctrl + F5.

The strange part is that any change in the project main HTML page is shown 
in the browser, but the changes in the code don't update.


El jueves, 16 de septiembre de 2010 16:48:51 UTC+2, Samuru Jackson escribió:
>
> Hi, 
>
> I have the problem, that sometimes it happens that my changed code in / 
> src/* is not updated in /war/WEB-INF/classes/* 
>
> Even if I delete the affected class in /war/* it puts an old version 
> of the class again back into /war/* . 
>
> How can this happen? Is there a cache somewhere around? 
>
> Project -> Clean does not work

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Z5UwkghNaTwJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to