Use lowercase package in code snippets
Closes gh-32734
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
|
||||
|
||||
public interface CorporateEventDao {
|
||||
}
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
|
||||
|
||||
public interface CorporateEventRepository {
|
||||
}
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
|
||||
|
||||
import org.apache.commons.dbcp2.BasicDataSource;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms
|
||||
|
||||
import org.apache.commons.dbcp2.BasicDataSource
|
||||
import org.springframework.context.annotation.Bean
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms
|
||||
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms
|
||||
|
||||
import org.apache.commons.dbcp2.BasicDataSource
|
||||
import org.springframework.context.annotation.Bean
|
||||
@@ -9,7 +9,7 @@
|
||||
https://www.springframework.org/schema/context/spring-context.xsd">
|
||||
|
||||
<!-- tag::snippet[] -->
|
||||
<bean id="corporateEventDao" class="org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms.JdbcCorporateEventDao">
|
||||
<bean id="corporateEventDao" class="org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms.JdbcCorporateEventDao">
|
||||
<property name="dataSource" ref="dataSource"/>
|
||||
</bean>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
<!-- tag::snippet[] -->
|
||||
<!-- Scans within the base package of the application for @Component classes to configure as beans -->
|
||||
<context:component-scan base-package="org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms" />
|
||||
<context:component-scan base-package="org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms" />
|
||||
|
||||
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
|
||||
<property name="driverClassName" value="${jdbc.driverClassName}"/>
|
||||
Reference in New Issue
Block a user