Sending message from input through the MDB.
parent
e56e1a3348
commit
1ba99edce0
|
@ -2,14 +2,14 @@ package pl.tpolgrabia.trainings.javaee.controllers;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
import pl.tpolgrabia.trainings.javaee.javaeedemo.ejb.SimpleMessageSendingBean;
|
||||||
import pl.tpolgrabia.trainings.javaee.javaeedemo.ejb.TodosDao;
|
import pl.tpolgrabia.trainings.javaee.javaeedemo.ejb.TodosDao;
|
||||||
import pl.tpolgrabia.trainings.javaee.javaeedemo.ejb.UserDao;
|
import pl.tpolgrabia.trainings.javaee.javaeedemo.ejb.UserDao;
|
||||||
import pl.tpolgrabia.trainings.javaee.javaeedemo.entities.User;
|
import pl.tpolgrabia.trainings.javaee.javaeedemo.entities.User;
|
||||||
|
|
||||||
import javax.annotation.PostConstruct;
|
import javax.annotation.PostConstruct;
|
||||||
import javax.ejb.EJB;
|
|
||||||
import javax.enterprise.context.RequestScoped;
|
|
||||||
import javax.faces.view.ViewScoped;
|
import javax.faces.view.ViewScoped;
|
||||||
|
import javax.inject.Inject;
|
||||||
import javax.inject.Named;
|
import javax.inject.Named;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -20,12 +20,15 @@ public class HelloController implements Serializable {
|
||||||
private static final long serialVersionUID = 2780964279445984180L;
|
private static final long serialVersionUID = 2780964279445984180L;
|
||||||
private static final Logger logger = LoggerFactory.getLogger(HelloController.class);
|
private static final Logger logger = LoggerFactory.getLogger(HelloController.class);
|
||||||
|
|
||||||
@EJB
|
@Inject
|
||||||
private TodosDao todosDao;
|
private TodosDao todosDao;
|
||||||
|
|
||||||
@EJB
|
@Inject
|
||||||
private UserDao userDao;
|
private UserDao userDao;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private SimpleMessageSendingBean simpleMessageSendingBean;
|
||||||
|
|
||||||
private String message;
|
private String message;
|
||||||
private boolean markedAsDanger = false;
|
private boolean markedAsDanger = false;
|
||||||
|
|
||||||
|
@ -50,7 +53,8 @@ public class HelloController implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String handleSubmit() {
|
public String handleSubmit() {
|
||||||
logger.info("Hello submit");
|
logger.info("Submitting message {}", message);
|
||||||
|
simpleMessageSendingBean.sendHello(message);
|
||||||
return "index";
|
return "index";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,5 +66,6 @@ public class HelloController implements Serializable {
|
||||||
@PostConstruct
|
@PostConstruct
|
||||||
public void init() {
|
public void init() {
|
||||||
this.message = "Submit me";
|
this.message = "Submit me";
|
||||||
|
logger.info("Initialized with message {}", message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,7 +89,20 @@
|
||||||
</h:column>
|
</h:column>
|
||||||
</h:dataTable>
|
</h:dataTable>
|
||||||
<form jsf:id="form">
|
<form jsf:id="form">
|
||||||
<button jsf:action="#{helloController.handleSubmit}" class="button is-light">#{helloController.message}</button>
|
<div class="field is-horizontal">
|
||||||
|
<div class="field-label is-normal">
|
||||||
|
<label for="message" class="label">Message</label>
|
||||||
|
</div>
|
||||||
|
<div class="field-body">
|
||||||
|
<div class="field">
|
||||||
|
<p class="control">
|
||||||
|
<h:inputText id="message" name="message" type="text" class="input"
|
||||||
|
value="#{helloController.message}"/>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h:commandButton action="#{helloController.handleSubmit}" class="button is-light" value="Submit me"/>
|
||||||
<button type="button" jsf:action="#{helloController.toggleButtonClass}"
|
<button type="button" jsf:action="#{helloController.toggleButtonClass}"
|
||||||
class="button #{helloController.markedAsDanger ? 'is-danger' : 'is-light'}">
|
class="button #{helloController.markedAsDanger ? 'is-danger' : 'is-light'}">
|
||||||
Action me
|
Action me
|
||||||
|
|
Loading…
Reference in New Issue