blob: 68031b1fbd42e6596385c0c719eb7c2c9a99bd5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
package com.vaadin.tests.tickets;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import com.vaadin.Application;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.UI.LegacyWindow;
@SuppressWarnings("serial")
public class Ticket695 extends Application {
@Override
public void init() {
final LegacyWindow w = new LegacyWindow("Serialization test #695");
setMainWindow(w);
Button b = new Button("Serialize ApplicationContext");
w.addComponent(b);
b.addListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
try {
ObjectOutputStream oos = new ObjectOutputStream(buffer);
long t = System.currentTimeMillis();
oos.writeObject(getContext());
w.showNotification("ApplicationContext serialized ("
+ buffer.size() + "bytes) in "
+ (System.currentTimeMillis() - t) + "ms");
} catch (IOException e) {
e.printStackTrace();
w.showNotification("ApplicationContext serialization failed - see console for stacktrace");
}
}
});
}
}
|