Skip to content

Commit b232aef

Browse files
committed
Use lowercase package in code snippets
Closes gh-32734
1 parent 2b62897 commit b232aef

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

Diff for: framework-docs/modules/ROOT/pages/data-access/jdbc/core.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ Kotlin::
339339

340340
More sophisticated stored procedure support is xref:data-access/jdbc/object.adoc#jdbc-StoredProcedure[covered later].
341341

342-
[[jdbc-JdbcTemplate-idioms]]
342+
[[jdbc-jdbctemplate-idioms]]
343343
=== `JdbcTemplate` Best Practices
344344

345345
Instances of the `JdbcTemplate` class are thread-safe, once configured. This is
@@ -605,7 +605,7 @@ functionality that is present only in the `JdbcTemplate` class, you can use the
605605
`getJdbcOperations()` method to access the wrapped `JdbcTemplate` through the
606606
`JdbcOperations` interface.
607607

608-
See also xref:data-access/jdbc/core.adoc#jdbc-JdbcTemplate-idioms[`JdbcTemplate` Best Practices]
608+
See also xref:data-access/jdbc/core.adoc#jdbc-jdbctemplate-idioms[`JdbcTemplate` Best Practices]
609609
for guidelines on using the `NamedParameterJdbcTemplate` class in the context of an application.
610610

611611

Diff for: framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcJdbcTemplateidioms/CorporateEventDao.java renamed to framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcjdbctemplateidioms/CorporateEventDao.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
17+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
1818

1919
public interface CorporateEventDao {
2020
}

Diff for: framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcJdbcTemplateidioms/CorporateEventRepository.java renamed to framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcjdbctemplateidioms/CorporateEventRepository.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
17+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
1818

1919
public interface CorporateEventRepository {
2020
}

Diff for: framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcJdbcTemplateidioms/JdbcCorporateEventDao.java renamed to framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcjdbctemplateidioms/JdbcCorporateEventDao.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
17+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
1818

1919
import javax.sql.DataSource;
2020

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
1+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
22

33
import javax.sql.DataSource;
44

Diff for: framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcJdbcTemplateidioms/JdbcCorporateEventRepository.java renamed to framework-docs/src/main/java/org/springframework/docs/dataaccess/jdbc/jdbcjdbctemplateidioms/JdbcCorporateEventRepository.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
17+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
1818

1919
import javax.sql.DataSource;
2020

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms;
1+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms;
22

33
import org.apache.commons.dbcp2.BasicDataSource;
44

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms
17+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms
1818

1919
import org.apache.commons.dbcp2.BasicDataSource
2020
import org.springframework.context.annotation.Bean
+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms
17+
package org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms
1818

1919
import org.apache.commons.dbcp2.BasicDataSource
2020
import org.springframework.context.annotation.Bean
+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
https://www.springframework.org/schema/context/spring-context.xsd">
1010

1111
<!-- tag::snippet[] -->
12-
<bean id="corporateEventDao" class="org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms.JdbcCorporateEventDao">
12+
<bean id="corporateEventDao" class="org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms.JdbcCorporateEventDao">
1313
<property name="dataSource" ref="dataSource"/>
1414
</bean>
1515

Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<!-- tag::snippet[] -->
1212
<!-- Scans within the base package of the application for @Component classes to configure as beans -->
13-
<context:component-scan base-package="org.springframework.docs.dataaccess.jdbc.jdbcJdbcTemplateidioms" />
13+
<context:component-scan base-package="org.springframework.docs.dataaccess.jdbc.jdbcjdbctemplateidioms" />
1414

1515
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
1616
<property name="driverClassName" value="${jdbc.driverClassName}"/>

0 commit comments

Comments
 (0)