spring-native
spring-native copied to clipboard
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.springframework.boot:spring-boot-maven-plugin](https://spring.io/projects/spring-boot) ([source](https://togithub.com/spring-projects/spring-boot)) | `2.7.18` -> `3.2.5` |...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. --- > [!WARNING] > Renovate failed to look up the following dependencies: `Failed to...
I noticed that there haven't been any recent updates to this project. Is it still being maintained?
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.mybatis:mybatis-spring](https://www.mybatis.org/spring/) ([source](https://togithub.com/mybatis/spring)) | `2.1.2` -> `3.0.4` | [](https://docs.renovatebot.com/merge-confidence/) |...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.mybatis.spring.boot:mybatis-spring-boot-autoconfigure](https://www.mybatis.org/spring-boot-starter/) ([source](https://togithub.com/mybatis/spring-boot-starter)) | `2.3.2` -> `3.0.3` | [](https://docs.renovatebot.com/merge-confidence/) |...
I've sync'd up the build as much as possible to all the others in mybatis. Its output is a lot cleaner now as it no longer shows download transfers so...
when run app is ok, but when run unittest will failed: ``` Caused by: java.io.FileNotFoundException: class path resource [file:/Users/xx/.../target/classes/mybatis/mapper/userMapper.xml] cannot be opened because it does not exist at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:199) at...
See https://github.com/graalvm/native-build-tools/issues/232 ### Solutions - [x] Apply workaround (use the latest dev version of graalvm on CI) - [ ] Drop workaround after releasing graalvm 22.2.0 ### Related Links *...
## Mapper ```java @Mapper @Transactional public interface CityMapper { @Insert("INSERT INTO city (name, state, country) VALUES(#{name}, #{state}, #{country})") @Options(useGeneratedKeys = true, keyProperty = "id") void insert(City city); @Select("SELECT id, name,...