Provide ZK-Spring framework integration. Highlighted features include exposing Spring-managed beans within the ZK framework, ZK custom scopes for Spring-managed beans, and securing ZK components. Please read ZK Spring Essentials.
ZK is a highly productive open source Java framework for building amazing enterprise web and mobile applications.
- Update release note according to https://tracker.zkoss.org/ > Releases
- Run release command according to the edition (freshly/official)
- Upload files under
target/to_uploadto file server > release folder - Set a tag for official version
- Publish a release in Github
- Change to the next version with
-SNAPSHOT. RunupVer oldversion newVersion FL - Update ZK Spring Essentials
./release
It automatically appends a date string into the version in pom.xml.
./release official
It automatically removes -SNAPSHOT from the version in pom.xml.
6.4.2 /** * Associates a list of {@link RequestMatcher} instances with the * {@link AbstractConfigAttributeRequestMatcherRegistry} * @param requestMatchers the {@link RequestMatcher} instances * @return the object that is chained after creating the {@link RequestMatcher} */ public C requestMatchers(RequestMatcher... requestMatchers) { Assert.state(!this.anyRequestConfigured, "Can't configure requestMatchers after anyRequest"); return chainRequestMatchers(Arrays.asList(requestMatchers)); }
original:
.requestMatchers(new AntPathRequestMatcher("/secure/**")).hasRole("USER")