Merge branch '2.0.x' into 2.1.x
commit
ccfbd03482
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -1 +1 @@
|
||||
DROP TABLE IF EXISTS TEST;
|
||||
DROP TABLE IF EXISTS TEST;
|
||||
|
@ -1 +1 @@
|
||||
DROP TABLE IF EXISTS TEST;
|
||||
DROP TABLE IF EXISTS TEST;
|
||||
|
@ -1 +1 @@
|
||||
INSERT INTO CITY (ID, NAME, STATE, COUNTRY, MAP) values (2000, 'Washington', 'DC', 'US', 'Google');
|
||||
INSERT INTO CITY (ID, NAME, STATE, COUNTRY, MAP) values (2000, 'Washington', 'DC', 'US', 'Google');
|
||||
|
@ -1 +1 @@
|
||||
custom
|
||||
custom
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -1 +1 @@
|
||||
yield "custom"
|
||||
yield "custom"
|
||||
|
@ -1 +1 @@
|
||||
custom
|
||||
custom
|
||||
|
@ -1 +1 @@
|
||||
INSERT INTO BAR VALUES (1, 'Andy');
|
||||
INSERT INTO BAR VALUES (1, 'Andy');
|
||||
|
@ -1 +1 @@
|
||||
INSERT INTO NON_ANNOTATED (ID, VALUE) values (2000, 'Test');
|
||||
INSERT INTO NON_ANNOTATED (ID, VALUE) values (2000, 'Test');
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<include resource="org/springframework/boot/logging/logback/base.xml"/>
|
||||
</configuration>
|
||||
</configuration>
|
||||
|
@ -1 +1 @@
|
||||
Hello {{World}}
|
||||
Hello {{World}}
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -1,4 +1,4 @@
|
||||
CREATE TABLE SPAM (
|
||||
id INTEGER IDENTITY PRIMARY KEY,
|
||||
name VARCHAR(30),
|
||||
);
|
||||
);
|
||||
|
@ -1 +1 @@
|
||||
INSERT INTO FOO VALUES (1, 'Andy');
|
||||
INSERT INTO FOO VALUES (1, 'Andy');
|
||||
|
@ -1,2 +1,2 @@
|
||||
INSERT INTO BAR(id, name) VALUES (1, 'bar');
|
||||
INSERT INTO BAR(id, name) VALUES (2, 'ばー');
|
||||
INSERT INTO BAR(id, name) VALUES (2, 'ばー');
|
||||
|
@ -1,4 +1,4 @@
|
||||
CREATE TABLE FOO (
|
||||
id INTEGER IDENTITY PRIMARY KEY,
|
||||
name VARCHAR(30),
|
||||
);
|
||||
);
|
||||
|
@ -1 +1 @@
|
||||
404 page
|
||||
404 page
|
||||
|
@ -1 +1 @@
|
||||
4xx page
|
||||
4xx page
|
||||
|
@ -1,4 +1,4 @@
|
||||
CREATE TABLE BAR (
|
||||
id INTEGER IDENTITY PRIMARY KEY,
|
||||
name VARCHAR(30),
|
||||
);
|
||||
);
|
||||
|
@ -1 +1 @@
|
||||
<html><body data:foo="${foo}"></body></html>
|
||||
<html><body data:foo="${foo}"></body></html>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<html>
|
||||
<body>
|
||||
<ul>
|
||||
<li>status: {{status}}</li>
|
||||
<li>message: {{message}}</li>
|
||||
<li>status: {{status}}</li>
|
||||
<li>message: {{message}}</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -1 +1 @@
|
||||
home
|
||||
home
|
||||
|
@ -1 +1 @@
|
||||
<html><body th:text="${foo}">Home</body></html>
|
||||
<html><body th:text="${foo}">Home</body></html>
|
||||
|
@ -1 +1 @@
|
||||
home
|
||||
home
|
||||
|
@ -1 +1 @@
|
||||
<html><body th:text="${#temporals.create('2015','11','24')}"></body></html>
|
||||
<html><body th:text="${#temporals.create('2015','11','24')}"></body></html>
|
||||
|
@ -1 +1 @@
|
||||
Message: ${greeting}
|
||||
Message: ${greeting}
|
||||
|
@ -1 +1 @@
|
||||
<html><body>Message: <span th:text="${greeting}">Hello</span></body></html>
|
||||
<html><body>Message: <span th:text="${greeting}">Hello</span></body></html>
|
||||
|
@ -1 +1 @@
|
||||
Message: ${greeting}
|
||||
Message: ${greeting}
|
||||
|
@ -1 +1 @@
|
||||
prefixed
|
||||
prefixed
|
||||
|
@ -1 +1 @@
|
||||
yield "prefixed"
|
||||
yield "prefixed"
|
||||
|
@ -1 +1 @@
|
||||
prefixed
|
||||
prefixed
|
||||
|
@ -1 +1 @@
|
||||
suffixed
|
||||
suffixed
|
||||
|
@ -1 +1 @@
|
||||
<html th:text="${foo}">foo</html>
|
||||
<html th:text="${foo}">foo</html>
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
||||
elementFormDefault="qualified"
|
||||
targetNamespace="http://www.springframework.org/spring-ws/wsdl/schemas">
|
||||
targetNamespace="https://www.springframework.org/spring-ws/wsdl/schemas">
|
||||
<element name="request" type="string" />
|
||||
<element name="response" type="string" />
|
||||
</schema>
|
||||
|
@ -1,3 +1,3 @@
|
||||
<settingsSecurity>
|
||||
<master>{oAyWuFO63U8HHgiplpqtgXih0/pwcRA0d+uA+Z7TBEk=}</master>
|
||||
</settingsSecurity>
|
||||
</settingsSecurity>
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -1,4 +1,4 @@
|
||||
CREATE TABLE FOO (
|
||||
id INTEGER IDENTITY PRIMARY KEY,
|
||||
name VARCHAR(30),
|
||||
);
|
||||
);
|
||||
|
@ -1,3 +1,3 @@
|
||||
test:
|
||||
foo:
|
||||
bar: value
|
||||
bar: value
|
||||
|
@ -1 +1 @@
|
||||
create table example (id int, name varchar);
|
||||
create table example (id int, name varchar);
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"foo": "bar"
|
||||
}
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
FOO=BAR
|
||||
FOO=BAR
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -1,3 +1,3 @@
|
||||
org.springframework.boot.env.PropertySourceLoader=\
|
||||
org.springframework.boot.context.config.TestPropertySourceLoader1,\
|
||||
org.springframework.boot.context.config.TestPropertySourceLoader2
|
||||
org.springframework.boot.context.config.TestPropertySourceLoader2
|
||||
|
@ -1 +1 @@
|
||||
spring.main.web-application-type: reactive
|
||||
spring.main.web-application-type: reactive
|
||||
|
@ -1 +1 @@
|
||||
foo: ${fooValue}
|
||||
foo: ${fooValue}
|
||||
|
@ -1 +1 @@
|
||||
Hello {{World}}
|
||||
Hello {{World}}
|
||||
|
@ -1 +1 @@
|
||||
Hello {{World}}
|
||||
Hello {{World}}
|
||||
|
@ -1,4 +1,4 @@
|
||||
---
|
||||
spring:
|
||||
profiles:
|
||||
active: dev,healthcheck
|
||||
active: dev,healthcheck
|
||||
|
@ -1,4 +1,4 @@
|
||||
---
|
||||
spring:
|
||||
profiles:
|
||||
active: dev, healthcheck
|
||||
active: dev, healthcheck
|
||||
|
@ -1 +1 @@
|
||||
DROP ALL OBJECTS;
|
||||
DROP ALL OBJECTS;
|
||||
|
@ -1 +1 @@
|
||||
hello: Bonjour
|
||||
hello: Bonjour
|
||||
|
@ -1,3 +1,3 @@
|
||||
insert into users (username, password, enabled) values ('user', '{noop}user', true);
|
||||
|
||||
insert into authorities (username, authority) values ('user', 'ROLE_ADMIN');
|
||||
insert into authorities (username, authority) values ('user', 'ROLE_ADMIN');
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue