aboutsummaryrefslogtreecommitdiffstats
path: root/test/spring-boot-subcontext/src/main/java/com/example/ViewGreeter.java
blob: 54d60d2d9c0dc0755abc93a77622c5b5bb78c8a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.example;

import com.vaadin.spring.annotation.SpringComponent;

@SpringComponent
public class ViewGreeter {
    private int counter = 0;

    public String sayHello() {
        return "Hello number " + counter++
                + " from bean with same scope as view " + toString();
    }
}