kazuki43zoo/demo-application 19
Demo application using TERASOLUNA Server Framework for Java (5.x)
Stub for API on Spring Boot
kazuki43zoo/demo-reactive-mybatis 5
Demo Reactive Web Application using Spring WebFlux and MyBatis
kazuki43zoo/demo-oauth2-login 2
Demo application for OAuth 2.0 Login with Spring Security 5 on Spring Boot
kazuki43zoo/asciidoctor-diagram 0
:left_right_arrow: Asciidoctor diagram extension, with support for PlantUML, Graphviz and ditaa.
kazuki43zoo/asciidoctor-maven-examples 0
A collection of example projects that demonstrates how to use the Asciidoctor Maven plugin.
issue openedkazuki43zoo/test
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.terasoluna.gfw</groupId>
<artifactId>terasoluna-gfw-common</artifactId>
<version>5.6.0.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</build>
</project>
created time in 12 days
issue closedmybatis/mybatis-3
Error with interface TypeHandler for enum with interface
Hi, I think I found an issue for a rather specific case.
I'm not sure if this issue belongs to this repo, Spring integration, or MyBatis core.
I put it here for now, because the demo is using TypeHandler's component scanning.
When trying to map an enum with an interface using the interface's TypeHandler Spring bean, there are cases which throws the following exception:
...
Caused by: org.apache.ibatis.type.TypeException: Unable to find a usable constructor for class com.example.demo.mybatis.TheInterfaceTypeHandler
at org.apache.ibatis.type.TypeHandlerRegistry.getInstance(TypeHandlerRegistry.java:457) ~[mybatis-3.5.5.jar:3.5.5]
at org.apache.ibatis.type.TypeHandlerRegistry.getJdbcHandlerMapForEnumInterfaces(TypeHandlerRegistry.java:286) ~[mybatis-3.5.5.jar:3.5.5]
at org.apache.ibatis.type.TypeHandlerRegistry.getJdbcHandlerMap(TypeHandlerRegistry.java:262) ~[mybatis-3.5.5.jar:3.5.5]
at org.apache.ibatis.type.TypeHandlerRegistry.getTypeHandler(TypeHandlerRegistry.java:237) ~[mybatis-3.5.5.jar:3.5.5]
...
Caused by: java.lang.NoSuchMethodException: com.example.demo.mybatis.TheInterfaceTypeHandler.<init>()
at java.lang.Class.getConstructor0(Class.java:3082) ~[na:1.8.0_265]
at java.lang.Class.getConstructor(Class.java:1825) ~[na:1.8.0_265]
As I understand it, MyBatis is trying to instantiate a new TypeHandler instead of using the one registered as Spring bean, which it failed because the type handler class requires another Spring bean (therefore no no-arg constructor).
Here's the sample code for demonstrating the case: https://github.com/KniveX/bugreport-springboot-mybatis-200816
- Java 8 (OpenJDK 1.8.0_265-8u265-b01-0ubuntu2~18.04-b01)
- Spring Boot (2.3.3.RELEASE)
- mybatis-spring-boot-starter (2.1.3)
Thank you, and I apologize if my english is not clear.
closed time in a month
KniveXissue commentmybatis/mybatis-3
Error with interface TypeHandler for enum with interface
1 quick question:
It is same mean!
comment created time in a month
issue commentmybatis/spring-boot-starter
Hi @neodem ,
The mybatis-spring-boot(mybatis core and mybatis-spring) no provide a retry feature.
If you need retry feature, probably you can use the spring-retry(@Retry) at mapper interface (interface that annotated @Mapper).
comment created time in a month
issue closedmybatis/spring-boot-starter
I just change mybatis-spring-boot-starter 1.3.2 to 2.1.2.
1.3.2:
2.1.2:
what happened?
closed time in a month
lvhuafuissue commentmybatis/spring-boot-starter
I've closed because no reply. please reopen this if need.
comment created time in a month
issue commentmybatis/spring-boot-starter
Spring Boot & mybatis-spring -org.apache.ibatis.type.TypeException: Could not resolve type alias
@xiao-ma-nong
This issue is closed already. If you have a problem, please create a new issue with reproduce project via GitHub.
comment created time in a month
issue commentmybatis/mybatis-3
Annotation problem of a method
Hi @xbcrh , Thanks for your reporting!
comment created time in a month
push eventmybatis/mybatis-3
commit sha 537b980d08245953cc391a9d5cb42a5ff4d4d51d
Fix javadoc Fixes gh-2011
push time in a month
issue closedmybatis/mybatis-3
Annotation problem of a method
HI,I found that there is a problem with the comment of selectList (String statement) in sqlsession I think there is no parameter
/**
* Retrieve a list of mapped objects from the statement key and parameter.
* @param <E> the returned list element type
* @param statement Unique identifier matching the statement to use.
* @return List of mapped object
*/
<E> List<E> selectList(String statement);
closed time in a month
xbcrhissue commentmybatis/mybatis-3
Error with interface TypeHandler for enum with interface
I think you don't need to use the spring bean in this case. I've modified as follow, it work fine. WDYT?
package com.example.demo.mybatis;
import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.apache.ibatis.type.BaseTypeHandler;
import org.apache.ibatis.type.JdbcType;
import com.example.demo.obj.TheInterface;
import com.example.demo.obj.TheRequiredBean;
public class TheInterfaceTypeHandler extends BaseTypeHandler<TheInterface> {
@Override
public void setNonNullParameter(PreparedStatement ps, int i, TheInterface parameter, JdbcType jdbcType)
throws SQLException {
ps.setString(i, parameter.name());
}
@Override
public TheInterface getNullableResult(ResultSet rs, String columnName) throws SQLException {
return TheRequiredBean.findByName( rs.getString(columnName) );
}
@Override
public TheInterface getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
return TheRequiredBean.findByName( rs.getString(columnIndex) );
}
@Override
public TheInterface getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
return TheRequiredBean.findByName( cs.getString(columnIndex) );
}
}
package com.example.demo.obj;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.apache.ibatis.io.ResolverUtil;
public class TheRequiredBean {
private static final Map<String, TheInterface> mapping = new HashMap<>();
private TheRequiredBean() {
// NOP
}
static {
new ResolverUtil<>().find(new ResolverUtil.IsA(TheInterface.class), "com.example.demo")
.getClasses().stream()
.filter(Class::isEnum)
.map(x -> ((Class<? extends Enum<?>>) x))
.flatMap(x -> Arrays.stream(x.getEnumConstants()))
.forEach(x -> mapping.put(x.name(), (TheInterface) x));
}
public static TheInterface findByName(String enumName) {
return mapping.get(enumName);
}
}
- application.properties
mybatis.type-handlers-package=com.example.demo.mybatis
comment created time in a month
issue commentmybatis/mybatis-3
Error with interface TypeHandler for enum with interface
This issue belong mybatis core module.
comment created time in a month
issue commentmybatis/spring-boot-starter
Error with interface TypeHandler for enum with interface
Hi @KniveX ,
Could explain an actual usage for interface based enum type handler that injected an other spring bean on your application?
comment created time in a month
push eventkazuki43zoo/demo-application
commit sha 1cbee7bb40c66e24eb9537f0805bb16c7443113d
Polishing log message
push time in 2 months
push eventkazuki43zoo/demo-application
commit sha d0a3714662d9a493cd7636c8db81d6b98bfaa32d
Support deregister JDBC driver on shutdown phase
push time in 2 months
Pull request review commentmybatis/mybatis-3
Added SQL_SERVER_SNAPSHOT value to TransactionIsolationLevel enum
READ_COMMITTED(Connection.TRANSACTION_READ_COMMITTED), READ_UNCOMMITTED(Connection.TRANSACTION_READ_UNCOMMITTED), REPEATABLE_READ(Connection.TRANSACTION_REPEATABLE_READ),- SERIALIZABLE(Connection.TRANSACTION_SERIALIZABLE);+ SERIALIZABLE(Connection.TRANSACTION_SERIALIZABLE),+ /**+ * A non-standard isolation level for Microsoft SQL Server. Defined in+ * the SQL Server JDBC driver {@link com.microsoft.sqlserver.jdbc.ISQLServerConnection}+ */
Please specify @since 3.5.6.
comment created time in 3 months
Pull request review commentmybatis/mybatis-3
Added SQL_SERVER_SNAPSHOT value to TransactionIsolationLevel enum
READ_COMMITTED(Connection.TRANSACTION_READ_COMMITTED), READ_UNCOMMITTED(Connection.TRANSACTION_READ_UNCOMMITTED), REPEATABLE_READ(Connection.TRANSACTION_REPEATABLE_READ),- SERIALIZABLE(Connection.TRANSACTION_SERIALIZABLE);+ SERIALIZABLE(Connection.TRANSACTION_SERIALIZABLE),+ /**+ * A non-standard isolation level for Microsoft SQL Server. Defined in
Please modify indent.
- current indent
/**
* javadoc comment.
*/
SQL_SERVER_SNAPSHOT(0x1000);
- expected indent
/**
* javadoc comment.
*/
SQL_SERVER_SNAPSHOT(0x1000);
comment created time in 3 months
issue commentmybatis/spring-boot-starter
@lvhuafu
You should be explained an actually problem on your application. What problem did by this different? We cannot anser by provided information.
Note: It may be due to a change in spring-projects/spring-framework#22461. Please check it.
comment created time in 3 months
push eventkazuki43zoo/mybatis-cloud-config-demo
commit sha ff537608214e9e68342391509f51e5588c43ba2a
Create mybatis-cloud-config-demo.properties
push time in 3 months
PR closed mybatis/jpetstore-6
pr closed time in 3 months
issue commentmybatis/spring
when use @RefreshScope on @Mapper
See spring-projects/spring-boot#22038 about auto-configure of mybatis-spring-boot-starter is disabled when DataSource is refresh scope.
Already fixed on 2.2.9.
comment created time in 3 months
push eventmybatis/thymeleaf-scripting
commit sha 12058ff733e5ae92932635b0fa8e439177063c30
Bump hsqldb from 2.5.0 to 2.5.1 Bumps hsqldb from 2.5.0 to 2.5.1. Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha 83fb7334f4eae2059944d60ba3fd9f385fab0ac9
Merge pull request #64 from mybatis/dependabot/maven/org.hsqldb-hsqldb-2.5.1 Bump hsqldb from 2.5.0 to 2.5.1
push time in 3 months
PR merged mybatis/thymeleaf-scripting
Bumps hsqldb from 2.5.0 to 2.5.1.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 3 months
issue openedmybatis/mybatis-3
Does not remove an ErrorContext from ThreadLocal when use the lazy loading
The my demo application uses the lazy loading feature.
https://github.com/kazuki43zoo/demo-application/blob/d4c01469e28599556a11c19c9f2c92e189782e54/src/main/resources/com/kazuki43zoo/domain/repository/account/AccountRepository.xml#L14-L15
In this case, an ErrorContext does not removed from ThreadLocal when has been execute the lazy loading. As result, following log was outputted when the Tomcat instance will be stopped.
[INFO] [talledLocalContainer] Jun 30, 2020 6:29:33 PM org.apache.catalina.loader.WebappClassLoaderBase checkThreadLocalMapForLeaks
[INFO] [talledLocalContainer] SEVERE: The web application [demo-application] created a ThreadLocal with key of type [java.lang.ThreadLocal] (value [java.lang.ThreadLocal@7ca16621]) and a value of type [org.apache.ibatis.executor.ErrorContext] (value [
[INFO] [talledLocalContainer] ### The error may exist in com/kazuki43zoo/domain/repository/account/AccountRepository.xml
[INFO] [talledLocalContainer] ### The error may involve com.kazuki43zoo.domain.repository.account.AccountRepository.findOnePasswordLock
[INFO] [talledLocalContainer] ### The error occurred while handling results
[INFO] [talledLocalContainer] ### SQL: SELECT account_uuid ,failure_count FROM account_password_lock WHERE account_uuid = ?]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
[INFO] [talledLocalContainer] Jun 30, 2020 6:29:33 PM org.apache.catalina.loader.WebappClassLoaderBase checkThreadLocalMapForLeaks
[INFO] [talledLocalContainer] SEVERE: The web application [demo-application] created a ThreadLocal with key of type [java.lang.ThreadLocal] (value [java.lang.ThreadLocal@7ca16621]) and a value of type [org.apache.ibatis.executor.ErrorContext] (value [
[INFO] [talledLocalContainer] ### The error may exist in com/kazuki43zoo/domain/repository/account/AccountRepository.xml
[INFO] [talledLocalContainer] ### The error may involve com.kazuki43zoo.domain.repository.account.AccountRepository.findAllPasswordHistoryByAccountUuid
[INFO] [talledLocalContainer] ### The error occurred while handling results
[INFO] [talledLocalContainer] ### SQL: SELECT account_uuid ,password FROM account_password_histories WHERE account_uuid = ?]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
...
I think better that clear an ErrorContext when has been executed the lazy loading.
created time in 3 months
issue commentmybatis/spring
Is it possible to add Sqlsessiontemplate function in Spring Batch
@pixy032
Sorry, I cannot understand a your question. Could you explain more details?
comment created time in 3 months
push eventkazuki43zoo/demo-application
commit sha d4c01469e28599556a11c19c9f2c92e189782e54
Drop log4jdbc-log4j2-jdbc4.1 Fixes gh-24
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 3d6cb4e748d23cff576904cdd11e0e6178de316d
Drop log4jdbc-log4j2-jdbc4.1 Fixes gh-24
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 5cbfa6f46357f258b619752fb2a3b99f2227eebe
Change schema to https from http on spring bean definition files
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 518bd127a82978bc6034c94fbd2971998e201f3b
Change loglevel of RequestMappingHandlerMapping to trace
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 56584d5c8c494bb5c11930e77772f68d78e177d7
Modify explanation for application specific library
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha e108503ca1513f734f2c2266fb3b835049eba048
1.8 -> 8 on GitHub Actions
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 2465857a36cc92d61e495504ca54c47513c0a16f
Update maven.yml
push time in 3 months
delete branch kazuki43zoo/demo-application
delete branch : support-non-lts-java
delete time in 3 months
push eventkazuki43zoo/demo-application
commit sha a96d180e419c3b718648d7641967d445d99be2a3
Support JDK 14, 15, 16 Fixes gh-22
commit sha 5be444ccc2e6e6ae10f59e0894d0ff8fb9b29cf8
Support JDK 14, 15, 16 Fixes gh-22
commit sha 744e9b9a8c84eb848c50e65afe8641efe88a9f97
Support JDK 14, 15 Fixes gh-22
commit sha 92da5400a70800468ef55162a1486faf3358399f
Merge pull request #23 from kazuki43zoo/support-non-lts-java Support JDK 14, 15
push time in 3 months
PR merged kazuki43zoo/demo-application
Fixes gh-22
pr closed time in 3 months
push eventkazuki43zoo/demo-application
commit sha 744e9b9a8c84eb848c50e65afe8641efe88a9f97
Support JDK 14, 15 Fixes gh-22
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 5be444ccc2e6e6ae10f59e0894d0ff8fb9b29cf8
Support JDK 14, 15, 16 Fixes gh-22
push time in 3 months
PR opened kazuki43zoo/demo-application
Fixes gh-22
pr created time in 3 months
create barnchkazuki43zoo/demo-application
created branch time in 3 months
push eventkazuki43zoo/demo-application
commit sha e6af30157b767071822ad2065f45b79ea91a4b86
Update to webdrivermanager 4.0.0
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 3b52b667cecdad3e0ad3cbcaf0b76bdf977e585a
Update to webdrivermanager 4.0.0
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 8a9c88800ce2342c897aa3b57ea0e3c861d50d70
Update to jacoco 0.8.5
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 05bcc7625f19baeb0c98a5af471989dd1347a49a
Drop CI using Travis CI Fixes gh-16
push time in 3 months
issue closedkazuki43zoo/demo-application
Replace to GitHub Actions instead of Travis CI
closed time in 3 months
kazuki43zoopush eventkazuki43zoo/demo-application
commit sha 7de411cc4c295225781adf756880152939a03761
Update README.md
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha b8aee4c898cdacbc246d2211af18e4d724c064ed
Update README.md
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha cfb9939a900a0beb0a2a5d61e340e1cb93487c8d
Create maven.yml
push time in 3 months
delete branch kazuki43zoo/demo-application
delete branch : use-headless-chrome
delete time in 3 months
push eventkazuki43zoo/demo-application
commit sha 9f28efdddcd2bcf5be0967e85637326cd411661b
Replace to headless chrome instead of Firefox on integration test Fixes gh-18
commit sha 4e94664a0e329f937154cc0c8cbf83fcd39c2808
Merge pull request #21 from kazuki43zoo/use-headless-chrome Replace to headless chrome instead of Firefox on integration test
push time in 3 months
PR merged kazuki43zoo/demo-application
Fixes gh-18
pr closed time in 3 months
issue closedkazuki43zoo/demo-application
Replace to headless chrome instead of Firefox on integration test
closed time in 3 months
kazuki43zooPR opened kazuki43zoo/demo-application
Fixes gh-18
pr created time in 3 months
create barnchkazuki43zoo/demo-application
created branch time in 3 months
delete branch kazuki43zoo/demo-application
delete branch : polish-itest-using-cargo
delete time in 3 months
push eventkazuki43zoo/demo-application
commit sha 7f2d53449a29fe3c0fa7827c9010763ec48dd503
Polishing integration test using cargo
commit sha ced9be5602422105d9ea9b29e4fb6bb6b0266d90
Merge pull request #20 from kazuki43zoo/polish-itest-using-cargo Polishing integration test using cargo
push time in 3 months
PR merged kazuki43zoo/demo-application
pr closed time in 3 months
PR opened kazuki43zoo/demo-application
pr created time in 3 months
create barnchkazuki43zoo/demo-application
branch : polish-itest-using-cargo
created branch time in 3 months
delete branch kazuki43zoo/demo-application
delete branch : support-openjdk11
delete time in 3 months
push eventkazuki43zoo/demo-application
commit sha 7bfd1bbcf1fe85326058a98eae9319eb215dbad9
Support OpenJDK 11 on CI Fixes gh-17
commit sha d15edaf0acb71aa9ef4fdf954c9875b39ba32f7a
Merge pull request #19 from kazuki43zoo/support-openjdk11 Support OpenJDK 11 on CI
push time in 3 months
PR merged kazuki43zoo/demo-application
Fixes gh-17
pr closed time in 3 months
issue closedkazuki43zoo/demo-application
Support openjdk11 on Travis CI
closed time in 3 months
kazuki43zooPR opened kazuki43zoo/demo-application
Fixes gh-17
pr created time in 3 months
issue openedkazuki43zoo/demo-application
Replace to headless chrome instead of Firefox on integration test
created time in 3 months
create barnchkazuki43zoo/demo-application
created branch time in 3 months
push eventkazuki43zoo/demo-application
commit sha 3623b5fa9057112556fa26281acf354bb50c51eb
fix syntax error of bash
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha c796d3dfd84a923588833c62128a62fc401c6186
Drop setting for coverall plugin
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha aa7e1e64924fb2e4eb583265a16ace8705107312
Drop redhat maven repository setting
push time in 3 months
issue closedterasolunaorg/terasoluna-gfw
Apply MyBatis 3.5.1 and MyBatis-Spring 2.0.1
Description
The MyBatis team has been released 1st maintenance version for fixing bugs(includes enhancements too) on mybatis 3.5 line and mybatis-spring 2.0 line.
Possible Solutions
Please consider to apply latest maintenance version into master branch (next release).
Affects Version/s
- 5.X.X.RELEASE
- 1.X.X.RELEASE
Fix Version/s
(To be written later by project member)
- [ ] 5.6.0 (master)
- [ ] 5.5.2 (5.5.x)
Issue Links
- #XXX
closed time in 3 months
kazuki43zooissue commentterasolunaorg/terasoluna-gfw
Apply MyBatis 3.5.1 and MyBatis-Spring 2.0.1
Close because already applied.
comment created time in 3 months
PR closed kazuki43zoo/demo-application
kazuki43zoo/demo-application now has a Chat Room on Gitter
@kazuki43zoo has just created a chat room. You can visit it here: https://gitter.im/kazuki43zoo/demo-application.
This pull-request adds this badge to your README.md:

Happy chatting.
PS: Click here if you would prefer not to receive automatic pull-requests from Gitter in future.
pr closed time in 3 months
push eventkazuki43zoo/demo-application
commit sha 6b91173991071d94c23535b5bc06cbd7a62d59a2
Modify link of angularjs
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha fa07606891e48268a1897d1911cc7a5b135b60b2
Modify link of bootstrap
push time in 3 months
delete branch kazuki43zoo/demo-application
delete branch : update-client-lib-version
delete time in 3 months
push eventkazuki43zoo/demo-application
commit sha 38fe9645b651bb9888352359e69542a487282176
Update to jquery 3.5.1 and bootstrap 3.4.1
commit sha c9950e8ffc449c00e79caa5ff953435dc8e680c9
Merge pull request #12 from kazuki43zoo/update-client-lib-version Update to jquery 3.5.1 and bootstrap 3.4.1
push time in 3 months
PR merged kazuki43zoo/demo-application
pr closed time in 3 months
issue openedkazuki43zoo/demo-application
Replace to GitHub Actions instead of Travis CI
created time in 3 months
issue openedkazuki43zoo/demo-application
Consider to use a new client library instead of AngularJS 1.2.x
created time in 3 months
issue openedkazuki43zoo/demo-application
Consider to upgrade Bootstrap 4.x line
created time in 3 months
issue openedkazuki43zoo/demo-application
Replace to webjar instead of bower
Use wabjar feature as following client libraries.
- angular
- jquery
- bootstrap
created time in 3 months
PR opened kazuki43zoo/demo-application
pr created time in 3 months
create barnchkazuki43zoo/demo-application
branch : update-client-lib-version
created branch time in 3 months
delete branch kazuki43zoo/demo-application
delete branch : apply-terasoluna-5.6
delete time in 3 months
push eventkazuki43zoo/demo-application
commit sha 02190e6672f388cb8452d5b25aef924cbef4b0a0
Apply TERAOLUNA 5.6.0.RELEASE #10
commit sha 47005b2342d45b1bc458a30b9daa6c8aefe69cc6
Change oraclejdk8 to openjdk8 on Travis CI
commit sha 6459098c6a0db745d1ee73261a5c3e31d7e3b887
Revert sudo: required
commit sha 7f7eddbe631d3003ba8bdc700dd2b086eb1da32c
Change method for starting xvfb
commit sha 3918165ba8910524248483e900d9bb2f545e6b71
Add addon for firefox on Travis CI
commit sha 67b84378a1d5f8e4a4be9567bcfcff4af0e1284f
Drop coverall report on Travis CI
commit sha 5a5c036c7df1300ac5d7b6d8a2b6f3b7ba526015
Merge pull request #11 from kazuki43zoo/apply-terasoluna-5.6 Apply terasoluna 5.6
push time in 3 months
PR merged kazuki43zoo/demo-application
pr closed time in 3 months
push eventkazuki43zoo/demo-application
commit sha 67b84378a1d5f8e4a4be9567bcfcff4af0e1284f
Drop coverall report on Travis CI
push time in 3 months
PR opened kazuki43zoo/demo-application
pr created time in 3 months
push eventkazuki43zoo/demo-application
commit sha 3918165ba8910524248483e900d9bb2f545e6b71
Add addon for firefox on Travis CI
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 7f7eddbe631d3003ba8bdc700dd2b086eb1da32c
Change method for starting xvfb
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 6459098c6a0db745d1ee73261a5c3e31d7e3b887
Revert sudo: required
push time in 3 months
push eventkazuki43zoo/demo-application
commit sha 47005b2342d45b1bc458a30b9daa6c8aefe69cc6
Change oraclejdk8 to openjdk8 on Travis CI
push time in 3 months