* michael.good703@gmail.com michael.good703@gmail.com * michael.good703@gmail.com michael.good703@gmail.com * michael.good703@gmail.com michael.good703@gmail.com * update * michael.good703@gmail.com Had to add @SpringBootApplication(exclude = MySQLAutoconfiguration.class) * Updated for 3.3.0.Final BAEL-1238 * Update pom.xml * BAEL-1238 Added new module spring-boot-keycloak and removed Keycloak code from spring-boot module * Minor changes to pom.xml * Update CustomConverterTest.java * Update StringToEmployeeConverter.java * Update GenericBigDecimalConverter.java * Update MyFeatures.java * Update .gitignore * Formatting changes * "Resolving conflicts" * Updated spring-boot to remove keycloak * Updated to see * Update * Updated * Found remnant file and deleted it * Update pom.xml Added spring-boot-keycloak module * Added reference to parent-boot-5 I changed the parent from org.springframework.boot to parent-boot-5. * Update GenericBigDecimalConverter.java Copy current GenericBigDecimalConverter to resolve any conflicts * Update StringToEmployeeConverter.java Copy current version to resolve any conflicts * Update pom.xml * Update pom.xml * Delete remnant files * Updated pom.xml * Update pom.xml * BAEL-1341 JDBC RowSet Interface This commit includes the main package and test package to accompany the tutorial JDBC RowSet Interface. * Update pom.xml * Changed from MySQL to h2 Changed MySQL to embedded database for ease of use.
		
			
				
	
	
		
			96 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0"?>
 | |
| <webRowSet xmlns="http://java.sun.com/xml/ns/jdbc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/jdbc http://java.sun.com/xml/ns/jdbc/webrowset.xsd">
 | |
|   <properties>
 | |
|     <command>SELECT * FROM customers</command>
 | |
|     <concurrency>1008</concurrency>
 | |
|     <datasource><null/></datasource>
 | |
|     <escape-processing>true</escape-processing>
 | |
|     <fetch-direction>1000</fetch-direction>
 | |
|     <fetch-size>0</fetch-size>
 | |
|     <isolation-level>2</isolation-level>
 | |
|     <key-columns>
 | |
|     </key-columns>
 | |
|     <map>
 | |
|     </map>
 | |
|     <max-field-size>0</max-field-size>
 | |
|     <max-rows>0</max-rows>
 | |
|     <query-timeout>0</query-timeout>
 | |
|     <read-only>true</read-only>
 | |
|     <rowset-type>ResultSet.TYPE_SCROLL_INSENSITIVE</rowset-type>
 | |
|     <show-deleted>false</show-deleted>
 | |
|     <table-name>customers</table-name>
 | |
|     <url>jdbc:h2:mem:testdb</url>
 | |
|     <sync-provider>
 | |
|       <sync-provider-name>com.sun.rowset.providers.RIOptimisticProvider</sync-provider-name>
 | |
|       <sync-provider-vendor>Oracle Corporation</sync-provider-vendor>
 | |
|       <sync-provider-version>1.0</sync-provider-version>
 | |
|       <sync-provider-grade>2</sync-provider-grade>
 | |
|       <data-source-lock>1</data-source-lock>
 | |
|     </sync-provider>
 | |
|   </properties>
 | |
|   <metadata>
 | |
|     <column-count>2</column-count>
 | |
|     <column-definition>
 | |
|       <column-index>1</column-index>
 | |
|       <auto-increment>false</auto-increment>
 | |
|       <case-sensitive>true</case-sensitive>
 | |
|       <currency>false</currency>
 | |
|       <nullable>0</nullable>
 | |
|       <signed>true</signed>
 | |
|       <searchable>true</searchable>
 | |
|       <column-display-size>11</column-display-size>
 | |
|       <column-label>ID</column-label>
 | |
|       <column-name>ID</column-name>
 | |
|       <schema-name>PUBLIC</schema-name>
 | |
|       <column-precision>10</column-precision>
 | |
|       <column-scale>0</column-scale>
 | |
|       <table-name>CUSTOMERS</table-name>
 | |
|       <catalog-name>TESTDB</catalog-name>
 | |
|       <column-type>4</column-type>
 | |
|       <column-type-name>INTEGER</column-type-name>
 | |
|     </column-definition>
 | |
|     <column-definition>
 | |
|       <column-index>2</column-index>
 | |
|       <auto-increment>false</auto-increment>
 | |
|       <case-sensitive>true</case-sensitive>
 | |
|       <currency>false</currency>
 | |
|       <nullable>0</nullable>
 | |
|       <signed>true</signed>
 | |
|       <searchable>true</searchable>
 | |
|       <column-display-size>50</column-display-size>
 | |
|       <column-label>NAME</column-label>
 | |
|       <column-name>NAME</column-name>
 | |
|       <schema-name>PUBLIC</schema-name>
 | |
|       <column-precision>50</column-precision>
 | |
|       <column-scale>0</column-scale>
 | |
|       <table-name>CUSTOMERS</table-name>
 | |
|       <catalog-name>TESTDB</catalog-name>
 | |
|       <column-type>12</column-type>
 | |
|       <column-type-name>VARCHAR</column-type-name>
 | |
|     </column-definition>
 | |
|   </metadata>
 | |
|   <data>
 | |
|     <currentRow>
 | |
|       <columnValue>1</columnValue>
 | |
|       <columnValue>Customer1</columnValue>
 | |
|     </currentRow>
 | |
|     <currentRow>
 | |
|       <columnValue>2</columnValue>
 | |
|       <columnValue>Customer2</columnValue>
 | |
|     </currentRow>
 | |
|     <currentRow>
 | |
|       <columnValue>3</columnValue>
 | |
|       <columnValue>Customer3</columnValue>
 | |
|     </currentRow>
 | |
|     <currentRow>
 | |
|       <columnValue>4</columnValue>
 | |
|       <columnValue>Customer4</columnValue>
 | |
|     </currentRow>
 | |
|     <currentRow>
 | |
|       <columnValue>5</columnValue>
 | |
|       <columnValue>Customer5</columnValue>
 | |
|     </currentRow>
 | |
|   </data>
 | |
| </webRowSet>
 |