Не понимаю в чем глюк. Нужно состряпать небольшие формочки на Vaadin. Но какая-то «магия», я не понимаю, почему после обновления странички в браузере я не вижу измененний.
в firefox что-то одно, chrome — другое, eclipse browser — третье.
Очистка кеша, оновление страници, перезагрызка браузера — не помогает. (
Как мне после перезагрузки страницы получать то что я изменил в коде и так д…
Спасибо!
Вот к примеру.
private Button profile;<br>
private Button search;<br>
private Button autoSearch;<br>
private Button logout;<br>
<br>
private final GridLayout grid = new GridLayout(1, 2);<br>
private final HorizontalLayout hTopLayout = new HorizontalLayout();<br>
private final VerticalLayout vContentLayout = new VerticalLayout(); <br>
<br>
public UserProfile() {<br>
this.setCaption("Prifile");<br>
<br>
profileMenu();<br>
<br>
grid.addComponent(hTopLayout);<br>
this.setContent(grid);<br>
}<br>
<br>
private void profileMenu() {<br>
<br>
profile = new Button("Profile");<br>
search = new Button("Suche");<br>
autoSearch = new Button("Auto Suche");<br>
logout = new Button("Log out");<br>
<br>
hTopLayout.addComponent(profile);<br>
hTopLayout.addComponent(search);<br>
hTopLayout.addComponent(autoSearch);<br>
hTopLayout.addComponent(logout);<br>
}<br>
и вот так добавляется
@SuppressWarnings("serial")<br>
public class JobApplication extends Application {<br>
@Override<br>
public void init() {<br>
ApplicationContext context = new ClassPathXmlApplicationContext("META-INF/spring/application-context.xml");<br>
Window mainWindow = new Window("Job");<br>
<br>
mainWindow.addComponent(userProfile);<br>
userProfile.setVisible(true);<br>
}<br>
<br>