0
我使用Vaadin 7爲我的Web應用程序,我遇到了閃存集成的問題。Vaadin 7閃存不會工作
我試圖嵌入Flash動畫是這樣的:
@Theme("testtheme")
public class TsetUI extends UI {
@Override
protected void init(VaadinRequest request) {
final HorizontalLayout layout = new HorizontalLayout();
layout.setWidth("100%");
setContent(layout);
Flash flash = new Flash(null, new ThemeResource("flash/logo.swf"));
layout.addComponent(flash);
}
}
,但它不顯示動畫,只是一些空白。
SWF文件位於:
的WebContent/VAADIN /主題/ testtheme /閃光燈/ logo.swf
我不知道我在幹什麼錯誤。請...我需要一些幫助。