Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a project in Vaadin 6 and ran it. It renders the text 'Hello Vaadin user' in browser perfectly.

Then I changed the label message.

public void init() {
    Window mainWindow = new Window("Edojimav6 Application");
    Label label = new Label("Vaadin 6"); // changed text
    mainWindow.addComponent(label);
    setMainWindow(mainWindow);
}

But it still displays the same text on browser 'Hello Vaadin user' and I cleared browsing history(cookies, cache memory.. But, I cleared everything) in my browser and ran the code. Now it renders the text 'Vaadin 6' perfectly.

Each and every time I need to clear browser history to run my code. I have proxy settings enabled in my network.

I'm using Eclipse Indigo. I have tested in Chrome 24.0.1312.57, Firefox 15.0.1 and Safari 6.0 browsers.

But, Vaadin 7 runs perfectly. It does not require any 'History clearing' to run the code.

share|improve this question

1 Answer

up vote 3 down vote accepted

In Vaadin 6, you have to add ?restartApplication to the url of the application, for example

 http://localhost:8080/myapp?restartApplication
share|improve this answer
1  
Great.. It worked for me. Is that mandatory to add '?restartApplicatio n' or else it is a fix for any bug.. – Gugan Mar 5 at 4:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.