我正在開發中的Java(春季)屬性 '數據源',需要在Java(春季)錯誤
我的Java文件是,
try
{
JdbcTemplate jt = new JdbcTemplate(dataSource);
System.out.println("Connection ....."+jt.toString());
Connection conn;
Statement st;
conn =DriverManager.getConnection(jt.toString());
conn = (Connection) jt.getDataSource();
st=conn.createStatement();
System.out.println("Connection created....."+st);
}
catch (Exception e) {
System.out.println("Error Found...."+ e.getMessage());
System.out.println("Strack Trace....."+e.getStackTrace());
}
我春天的Web應用程序-servlet.xml文件爲,
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/cjbranchdb" />
<property name="username" value="root" />
<property name="password" value="root" />
</bean>
<bean id="JdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource"><ref bean="dataSource"/></property>
</bean>
但它得到一個錯誤,
Error Found: Property 'dataSource' is required.
Strack Trace: [Ljava.lang.StackTraceElement;@7948dd
在這裏,我想在Java文件中建立連接並將其作爲Jasper Report傳遞給另一個變量。
請幫助,如何解決這個問題?
我不得不說,有在從你的問題的代碼太多的問題。你可能對Java世界是全新的。我建議你閱讀最新的Spring文檔,教程和參考應用程序。 –
@PavelHoral可以請您糾正我的代碼問題或有關問題的存在......請...... –