我尝试使用以下代码获取jdbc连接。
我使用mysql数据库jpa2和spring 4.如何获取jdbc连接并从mysql数据库中检索此值
import java.io.Serializable;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.sql.DataSource;
import org.springframework.jdbc.core.JdbcTemplate;
@ManagedBean
@ViewScoped
public class JDBCTest implements Serializable{
private JdbcTemplate jdbcTemplate;
void setDataSource(DataSource dataSource) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
private static final long serialVersionUID = 1L;
public void testDB(){
Connection con=null;
try {
con = getJdbcTemplate().getDataSource().getConnection();
PreparedStatement pst=con.prepareStatement("select * from global_class");
ResultSet st=pst.executeQuery();
while(st.next()){
System.out.println("Class Name :"+st.getString(1));
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public JdbcTemplate getJdbcTemplate() {
return jdbcTemplate;
}
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
}
当在此代码上方运行时,我得到此异常
WARNING: #{jDBCTest.testDB}: java.lang.NullPointerException
javax.faces.FacesException: #{jDBCTest.testDB}: java.lang.NullPointerException
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)
at org.springframework.faces.webflow.FlowActionListener.processAction(FlowActionListener.java:71)
at org.springframework.faces.model.SelectionTrackingActionListener.processAction(SelectionTrackingActionListener.java:64)
at javax.faces.component.UICommand.broadcast(UICommand.java:315)
答案 0 :(得分:0)
在上下文文件中指定数据库配置,如下所示
@autowired
public void setDataSource(DataSource dataSource) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
}
然后使用spring依赖注入开始将此数据源对象注入JDBCTest类。 例如:
<bean id="jdbcTest" class="JDBCTest"><property name="dataSource" ref="datasource"/></bean>
或
NUMBER
答案 1 :(得分:0)
您的bean是一个Jsf Managed bean,因此您的JdbcTemplate
属性应该使用@ManagedProperty
进行注释,否则不会注入任何内容。
Fist将JdbcTemplate
作为bean添加到应用程序上下文中。
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource" />
</bean>
然后在您的bean中使用JdbcTemplate
注释您的@ManagedProperty
并创建setJdbcTemplate
方法。
@ManagedProperty("#{jdbcTemplate}")
private JdbcTemplate jdbcTemplate;
JdbcTemplate
旨在简化JDBC的使用。所以使用它。你构建的是一个非常复杂的方法来做同样丑陋的事情。正确使用JdbcTemplate
并将其用于预期目的。
您的代码应该是这样的。
getJdbcTemplate().query("select * from global_class", new RowCallbackHandler() {
public void procesRow(ResultSet rs, int row) {
System.out.println("Class Name :" + rs.getString(1));
}
});
这与您的代码相同,但按预期使用JdbcTemplate
。