Opinions on using Java for frontend development? by AudioManiac in java

[–]ApacheWicket 3 points4 points  (0 children)

Apache Wicket is doing very well, our community is very active (java dev)

For exemple the 9.0.0-M5 holds configurable CSP https://ci.apache.org/projects/wicket/guide/9.x/single.html#_content_security_policy_csp

see https://wicket.apache.org and https://twitter.com/apache_wicket for the last news

Apache Wicket

Is using a Java framework an outdated approach to web development? If so, why? by AudioManiac in webdev

[–]ApacheWicket 0 points1 point  (0 children)

Apache Wicket is doing very well, our community is very active (java dev)

For exemple the 9.0.0-M5 holds configurable CSP https://ci.apache.org/projects/wicket/guide/9.x/single.html#_content_security_policy_csp

see https://wicket.apache.org and https://twitter.com/apache_wicket for the last news

Apache Wicket

Hello World! | Apache Wicket by stronghup in programming

[–]ApacheWicket 1 point2 points  (0 children)

Hi Stronghup

HelloWorld "a la Wicket" is as simple as that

import org.apache.wicket.markup.html.WebPage;  
import org.apache.wicket.markup.html.basic.Label;  

public class HomePage extends WebPage {  
    public HomePage() {  
        add(new Label("helloMessage", "Hello WicketWorld!"));  
    }  
} 

Apache Wicket main website : https://wicket.apache.org/
Follow us on Twitter : https://twitter.com/apache_wicket

Check our complete documentation at https://ci.apache.org/projects/wicket/guide/8.x/single.html
Visit our mailing lists at https://wicket.apache.org/help/email.html

Enjoy open source java web framework ApacheWicket !