I want to make a couple of Vaadin (v22) views accessible without a login, i.e. make them publicly available.
I looked at this tutorial, which is probably outdated: https://vaadin.com/learn/tutorials/securing-your-app-with-spring-security
There it says, that all views not using the @Secured annotation are publicly accessible. In my case it is different. Nothing is accessible at all, unless anotated with @PermitAll then logged in users can access the page.
How do I exclude certain Vaadin views from authentication?
274 Views Asked by Chris At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in VAADIN
- Vaadin ServerRPC Exceptionhandling
- How to display MJPEG-stream in Vaadin (Java)?
- Vaadin - How to have two columns of data (Gridlayout with field and Label data with wrapping text)
- Log4j Logger not logging in some methods
- Building path for Vaadin project
- Vaadin CountdownClock Add On. How to freeze CountdownClock component and/or the appearance of count down tex
- I cannot change the theme for my UI in Vaadin
- Change orientation of rows and columns of Vaadin Grid
- How to change Vaadin 7 layout based on Combobox items selection?
- How to run tomcat7 web app through https over port 8443?
- How manage styles in Vaadin portlet in Liferay
- How to make only some columns editable in a Vaadin Grid?
- Vaadin request filter with filter chain?
- Vaadin is it possible to have different colors for text items in ComboBox
- count items in a column vaadin
Related Questions in VAADIN22
- In vaadin 22 grid Items are not getting selected when select all check box is clicked on UI
- Vaadin 22 Starter not working in a standalone instance of Jetty v9
- Vaadin22 get notified when a user clears a textfield
- Image component not displaying in Vaadin Flow application
- How do I exclude certain Vaadin views from authentication?
- Vaadin 22 with Spring MVC and Spring Security
- Vaadin 22 with web.xml and Spring
- How to logout correct in stateless Vaadin Fusion 22 project with oauth2
- Vaadin v22 DateTimePicker component renders twice
- How to initialize components in vaadin-dialog
- Vaadin frontend folder Failed to load content of './frontend/index.html'
- How to import components with the same name but different path?
- Cannot find module '@vaadin/flow-frontend/Flow'
- Vaadin v22: Odd page displayed each time after login to application
- Styling vaadin-input-container
Related Questions in VAADIN-SPRING-BOOT
- Spring boot @Autowired Annotation not working when deploying on Tomcat
- Style label font size
- Set background image without css
- productionMode=true wont disable ?args
- Use multiple themes in spring boot vaadin application
- Vaadin-Grid not displaying the data from the database it is supposed to show
- What happened to VaadinWebSecurityConfigurerAdapter in Vaadin 19?
- Vaadin @Push with Vaadin4Spring Security
- How do I exclude certain Vaadin views from authentication?
- autowired vaadin component gets index -1
- Vaadin - productionMode on Spring Boot customized Servlet
- Migrating from Vaadin 23.0 to Vaadin 24.1.4: No Package.json found issue
- Vaadin 24: npm issue
- Error when Add VaadinSecurity : This can also happen if you are @ComponentScanning a springframework package
- images not accessible by Vaadin Spring Application
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As ever so often, I found the answer while preparing the question.
The annotation to use is
@AnonymousAllowedExample:
Official Vaadin v22 docs