Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Apache ISIS 有默认登录页面。但是我怎样才能改变我自己的登录页面呢?以及如何创建自己的QuickStartApplication.java类。
在 Isis 变得更出名之前,您最好在 Isis 邮件列表上提出这个问题。
简短的回答是通过 PageRegistrySpi 注册一个不同的登录页面。最简单的方法可能是通过覆盖 IsisWicketModule [1](guice 引导)来安装 PageClassRegistry 的不同实现。IsisWicketModule 本身是通过覆盖 IsisWicketApplication [2] 中的适当挂钩来指定的。
前往邮件列表了解更多信息。
[1] https://github.com/apache/isis/blob/5ca7bf71df93921d56702df739973cd67c5223f7/component/viewer/wicket/impl/src/main/java/org/apache/isis/viewer/wicket/viewer/IsisWicketModule.java
[2] https://github.com/apache/isis/blob/77aa56878f60bda6b21daa4300e5eb6dd914cce1/component/viewer/wicket/impl/src/main/java/org/apache/isis/viewer/wicket/viewer/IsisWicketApplication.java#L273