vaadin-spring-boot-starter does not find widgetset with 8.0.5
Open
Nobody has claimed this yet.
question
Stale
- Dominant language
- Java
- Stars
- 1.8k
- Forks
- 717
- Avg merge
- 2d 6h
- Merged PRs (30d)
- 3
Description
Only use GitHub issues for bugs and feature requests.
For general support from the community, see https://vaadin.com/forum
For bugs, please provide at minimum the following information:
- Vaadin version
vaadin-bom 8.0.5, spring-boot 1.5.2.RELEASE, versions choosen by start.spring.io
It works fine if I change vaadin version to 8.0.4 - Description of the bug
Widgetset is not found, log message:Requested resource [/VAADIN/widgetsets/com.vaadin.DefaultWidgetSet/com.vaadin.DefaultWidgetSet.nocache.js] not found from filesystem or through class loader. Add widgetset and/or theme JAR to your classpath or add files to WebContent/VAADIN folder. - If possible, minimal reproducible example
import com.vaadin.annotations.Theme;
import com.vaadin.server.VaadinRequest;
import com.vaadin.spring.annotation.SpringUI;
import com.vaadin.ui.Label;
import com.vaadin.ui.UI;
@SpringUI
@Theme("valo")
public class MyUI extends UI {
@Override
protected void init(VaadinRequest request) {
setContent(new Label("Hello, World!"));
}
}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the issue with the provided MyUI example, Vaadin 8.0.5, Spring Boot 1.5.2.RELEASE, and the vaadin-bom version shown. Investigate why the requested DefaultWidgetSet resource is missing; done means the example loads without the widgetset-not-found message.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java, spring-boot
- Domain
- web-dev
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100