Wicket & Spring Boot

2015-11-12 Thread Marc
Hi all,
it's my first post, so I'm hopefully subscribed to the mailing list.

Is there currently any Spring Boot integration support? 

I've started with a Spring Boot Wicket integration:  wicket-spring-boot
  .

Besides the maven pom.xml you currently only need thisconfiguration class: 
WicketApplication.java

  
to get a full working wicket application. You only have to execute the main
method. You should get a default login page and a simple home page. Spring
security is automatically configured in a default configuration. Within a
property file you can switch between deployment or development configruation

wicket.configurationType=DEPLOYMENT
wicket.compressHTMLEnabled=true  HTMLCompressingConfig.java

  
wicket.statelessCheckerEnabled=true  StatelessCheckerConfig.java

  

My main goal was to learn a bit about Spring Boot but maybe its interessing
for somone in the Wicket community

GreetsMarc

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-Boot-tp4672591.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket & Spring Boot

2015-11-12 Thread Martin Grigorov
Hi Marc,

Welcome to the mailing list and thank you for sharing your project with us!
I have seen some Wicket+SpringBoot apps both in Wicket and Wicket-Bootstrap
issue trackers but as far as I can see your project doesn't just use SB but
actually integrates with it.
I'll keep an eye on it!

P.S. I guess you know that web.de mail client is based on Wicket too ? :-)

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Thu, Nov 12, 2015 at 10:56 PM, Marc  wrote:

> Hi all,
> it's my first post, so I'm hopefully subscribed to the mailing list.
>
> Is there currently any Spring Boot integration support?
>
> I've started with a Spring Boot Wicket integration:  wicket-spring-boot
>   .
>
> Besides the maven pom.xml you currently only need thisconfiguration class:
> WicketApplication.java
> <
> https://github.com/MarcGiffing/wicket-spring-boot/blob/master/wicket-spring-boot-starter-example/src/main/java/com/giffing/wicket/spring/boot/example/WicketApplication.java
> >
> to get a full working wicket application. You only have to execute the main
> method. You should get a default login page and a simple home page. Spring
> security is automatically configured in a default configuration. Within a
> property file you can switch between deployment or development
> configruation
>
> wicket.configurationType=DEPLOYMENT
> wicket.compressHTMLEnabled=true  HTMLCompressingConfig.java
> <
> https://github.com/MarcGiffing/wicket-spring-boot/blob/master/wicket-spring-boot-starter/src/main/java/com/giffing/wicket/spring/boot/starter/configuration/extensions/HTMLCompressingConfig.java
> >
> wicket.statelessCheckerEnabled=true  StatelessCheckerConfig.java
> <
> https://github.com/MarcGiffing/wicket-spring-boot/blob/master/wicket-spring-boot-starter/src/main/java/com/giffing/wicket/spring/boot/starter/configuration/extensions/StatelessCheckerConfig.java
> >
>
> My main goal was to learn a bit about Spring Boot but maybe its interessing
> for somone in the Wicket community
>
> GreetsMarc
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-Boot-tp4672591.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>