Browse Source
The property is named 'spring.jooq.config' and is of type Resource, so that it supports classpath: and all the other common prefixes. The config is loaded through JAXB. If JAXB is not on the classpath, an exception is thrown. Also adds a failure analyzer for this exception. Closes gh-38778pull/44012/head
11 changed files with 186 additions and 10 deletions
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
/* |
||||
* Copyright 2012-2025 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.jooq; |
||||
|
||||
/** |
||||
* Exception to be thrown if JAXB is not available. |
||||
* |
||||
* @author Moritz Halbritter |
||||
*/ |
||||
class JaxbNotAvailableException extends RuntimeException { |
||||
|
||||
} |
||||
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
/* |
||||
* Copyright 2012-2025 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.autoconfigure.jooq; |
||||
|
||||
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer; |
||||
import org.springframework.boot.diagnostics.FailureAnalysis; |
||||
import org.springframework.boot.diagnostics.FailureAnalyzer; |
||||
|
||||
/** |
||||
* {@link FailureAnalyzer} for {@link JaxbNotAvailableException}. |
||||
* |
||||
* @author Moritz Halbritter |
||||
*/ |
||||
class JaxbNotAvailableExceptionFailureAnalyzer extends AbstractFailureAnalyzer<JaxbNotAvailableException> { |
||||
|
||||
@Override |
||||
protected FailureAnalysis analyze(Throwable rootFailure, JaxbNotAvailableException cause) { |
||||
return new FailureAnalysis("Unable to unmarshal jOOQ settings because JAXB is not available.", |
||||
"Add JAXB to the classpath or remove the spring.jooq.config property.", cause); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
||||
<settings xmlns="http://www.jooq.org/xsd/jooq-runtime-3.19.0.xsd"> |
||||
<batchSize>100</batchSize> |
||||
</settings> |
||||
Loading…
Reference in new issue