0

我使用 Spring Boot 和 Vaadin 为应用程序界面开发了一个应用程序 Web。

我的问题是无法让控制器查看,应用程序启动正常,但 bean 在执行中为空。

我的控制器:

@Component
public class ViewController {

/** Inyección de Spring para poder acceder a la capa de datos.*/
@Autowired
private CommonSetup commonSetup;

/**
 * This method gets the user from db.
 */
public Temployee getUser(String username, String password) {
    Temployee empl = null;
    // get from db the user
    empl = commonSetup.getUserByUsernameAndPass(username, password);

    // return the employee found.
    return empl;
}

……

我的观点:

@Theme("login")
@SpringUI
public class LoginView extends CustomComponent implements View ,Button.ClickListener {

/** The view controller. */
@Autowired
private ViewController   vContr;

public LoginView() {
    setSizeFull();

   ...
   ...

   // Check if the username and the password are correct.
   Temployee empleado = vContr.getUser(username, password);

LoginViewbean ViewController空。

我怎样才能bean在视图中插入?

谢谢。

4

1 回答 1

0

您无法访问构造函数中的自动装配字段,因为此时尚未完成注入。添加一个带有@PostConstruct注解的方法,该注解将在注入字段后执行:

@PostConstruct
public void init() {
  // Check if the username and the password are correct.
  Temployee empleado = vContr.getUser(username, password);
}

这不是 vaadin4spring 特有的,这就是 Spring 的工作方式。

于 2015-12-29T23:12:15.690 回答