init @PostConstruct 不起作用
init @PostConstruct doesnt work
我使用 hibernate4 和 spring4 创建了一个 Web 动态项目。
这是我的文件:
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>posts</display-name>
<welcome-file-list>
<welcome-file>users.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:application-context.xml</param-value>
</context-param>
</web-app>
这是我调用 init()
方法的 bean
package com.posts.beans;
import java.io.Serializable;
import java.util.List;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import com.posts.models.Users;
import com.posts.services.UsersService;
@SuppressWarnings("serial")
@Component("Usersbean")
@Scope("session")
public class UsersBean implements Serializable{
@Autowired
private transient UsersService us;
private List<Users> lu;
public UsersBean() {
}
@PostConstruct
public void init(){
lu=us.getAllUsers();
System.out.println("hello");//doesn't shw up=init() doesnt work
}
public String getMyname(){
return "mohamed";
}
public List<Users> getLu() {
return lu;
}
public void setLu(List<Users> lu) {
this.lu = lu;
}
}
这是我的 jsp 文件;我试图只显示一个字段:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>test list users</title>
</head>
<body>
<jsp:useBean id="users" class="com.posts.beans.UsersBean" />
<table border="1">
<tr><th>id</th><th>nom</th><th>prenom</th><th>login</th><th>password</th></tr>
</table>
<c:forEach var="user" items="${users.lu}">
<p><c:out value="${user.nom}" /></p>
</c:forEach>
</body>
</html>
所以控制台不会在方法 init 中显示消息 "hello",这意味着 id 不工作。
也许是因为我没有在 web.xm 中声明 servlet 元素,但我不知道它是如何工作的。
注意:我用 JUnit 测试了服务,工作正常
我已经通过使用 @Service("userbean") 注释 UserBean class 并添加 :
解决了这个问题
<bean id="usersBean" class="com.posts.beans.UsersBean" init-method="init" />
在应用程序中-context.xml 文件..
当我 运行 我的应用程序时,我看到 SELECT 的休眠生成代码和消息 hello
Hello
Hibernate: select users0_.id as id1_2_, users0_.login as login2_2_, users0_.nom as nom3_2_, users0_.password as password4_2_, users0_.prenom as prenom5_2_ from public.users users0_
" 在控制台中,这意味着 init()
方法已被执行。
您可以通过三种不同的方式使其发挥作用:
添加到您的应用程序-context.xml 负责计算@PostConstruct 注释的 bean:
<bean class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor" />
添加里面已经有CommonAnnotationBeanPostProcessor的namespase:
<context:annotation-config />
或
<context:component-scan base-package="package.with.beans" /> <!-- scans components and adds <context:annotation-config /> -->
- 在 class 的标记 bean 中为参数 "init-method"
定义 init 方法
我使用 hibernate4 和 spring4 创建了一个 Web 动态项目。 这是我的文件:
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>posts</display-name>
<welcome-file-list>
<welcome-file>users.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:application-context.xml</param-value>
</context-param>
</web-app>
这是我调用 init()
方法的 bean
package com.posts.beans;
import java.io.Serializable;
import java.util.List;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import com.posts.models.Users;
import com.posts.services.UsersService;
@SuppressWarnings("serial")
@Component("Usersbean")
@Scope("session")
public class UsersBean implements Serializable{
@Autowired
private transient UsersService us;
private List<Users> lu;
public UsersBean() {
}
@PostConstruct
public void init(){
lu=us.getAllUsers();
System.out.println("hello");//doesn't shw up=init() doesnt work
}
public String getMyname(){
return "mohamed";
}
public List<Users> getLu() {
return lu;
}
public void setLu(List<Users> lu) {
this.lu = lu;
}
}
这是我的 jsp 文件;我试图只显示一个字段:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>test list users</title>
</head>
<body>
<jsp:useBean id="users" class="com.posts.beans.UsersBean" />
<table border="1">
<tr><th>id</th><th>nom</th><th>prenom</th><th>login</th><th>password</th></tr>
</table>
<c:forEach var="user" items="${users.lu}">
<p><c:out value="${user.nom}" /></p>
</c:forEach>
</body>
</html>
所以控制台不会在方法 init 中显示消息 "hello",这意味着 id 不工作。 也许是因为我没有在 web.xm 中声明 servlet 元素,但我不知道它是如何工作的。 注意:我用 JUnit 测试了服务,工作正常
我已经通过使用 @Service("userbean") 注释 UserBean class 并添加 :
解决了这个问题<bean id="usersBean" class="com.posts.beans.UsersBean" init-method="init" />
在应用程序中-context.xml 文件.. 当我 运行 我的应用程序时,我看到 SELECT 的休眠生成代码和消息 hello
Hello
Hibernate: select users0_.id as id1_2_, users0_.login as login2_2_, users0_.nom as nom3_2_, users0_.password as password4_2_, users0_.prenom as prenom5_2_ from public.users users0_
" 在控制台中,这意味着 init()
方法已被执行。
您可以通过三种不同的方式使其发挥作用:
添加到您的应用程序-context.xml 负责计算@PostConstruct 注释的 bean:
<bean class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor" />
添加里面已经有CommonAnnotationBeanPostProcessor的namespase:
<context:annotation-config />
或
<context:component-scan base-package="package.with.beans" /> <!-- scans components and adds <context:annotation-config /> -->
- 在 class 的标记 bean 中为参数 "init-method" 定义 init 方法