Ask questions and see you at 11th April at 6.PM. CET: http://www.ustream.tv/channel/adambien Also see archives: airhacks.tv
- Java EE 8 News
- 2 years of airhacks.tv celebration (now really 2 years)
- Do you think NetBeans is still a good IDE for JEE, Java, HTML, SPA, etc, development in 2016? I'm currently faced with a number of developers who seem to love IntelliJ, but I'd love a free alternative for some of our projects. We're currently using Eclipse (and STS), but that platform doesn't agree with me which is why I'm considering NetBeans. I know I should just make up my own mind about this, but I appreciate your work a lot and would love to hear your opinion.
- How to access the "other side" with afterburner.fx?:
@Service
public class Receiver {
private long counter = 0;
@PostConstruct
public void init() {
System.out.println("Receiver.init()");
}
@RabbitListener(queues = "hello")
public void receiveMessage(Message message) {
String s = new String(message.getBody());
// msgRepository.save(new Msg(null, s));
Platform.runLater(() -> {
counter++;
System.out.println("Received <" + s + ">" + counter);
//I want to print this log to JavaFx Label
});
}
}
Hello Adam!
I have a few questions revolving around the EJB vs CDI topic (things I have picked up from Java EE EG discussions)
The underlying themes for JavaEE.future (Java EE 8/9) seem to be the following
Questions
Cheers!
Abhishek