Skip to content

Commit b03cc33

Browse files
发布2.3.24
fix:#46
1 parent f6e74df commit b03cc33

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ github地址 : https://github.com/wangzihaogithub/spring-boot-protocol
149149
<dependency>
150150
<groupId>com.github.wangzihaogithub</groupId>
151151
<artifactId>spring-boot-protocol</artifactId>
152-
<version>2.3.23</version>
152+
<version>2.3.24</version>
153153
</dependency>
154154
```
155155

@@ -161,7 +161,7 @@ github地址 : https://github.com/wangzihaogithub/spring-boot-protocol
161161
<dependency>
162162
<groupId>com.github.wangzihaogithub</groupId>
163163
<artifactId>netty-servlet</artifactId>
164-
<version>2.3.23</version>
164+
<version>2.3.24</version>
165165
</dependency>
166166
```
167167

@@ -317,7 +317,7 @@ github地址 : https://github.com/wangzihaogithub/spring-boot-protocol
317317
<dependency>
318318
<groupId>com.github.wangzihaogithub</groupId>
319319
<artifactId>spring-boot-protocol</artifactId>
320-
<version>2.3.23</version>
320+
<version>2.3.24</version>
321321
</dependency>
322322

323323
2.编写代码
@@ -397,7 +397,7 @@ github地址 : https://github.com/wangzihaogithub/spring-boot-protocol
397397
<dependency>
398398
<groupId>com.github.wangzihaogithub</groupId>
399399
<artifactId>spring-boot-protocol</artifactId>
400-
<version>2.3.23</version>
400+
<version>2.3.24</version>
401401
</dependency>
402402

403403
2.编写代码
@@ -486,7 +486,7 @@ github地址 : https://github.com/wangzihaogithub/spring-boot-protocol
486486
<dependency>
487487
<groupId>com.github.wangzihaogithub</groupId>
488488
<artifactId>spring-boot-protocol</artifactId>
489-
<version>2.3.23</version>
489+
<version>2.3.24</version>
490490
</dependency>
491491
492492
2.编写启动类

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.github.wangzihaogithub</groupId>
66
<artifactId>spring-boot-protocol</artifactId>
7-
<version>2.3.23</version>
7+
<version>2.3.24</version>
88
<packaging>jar</packaging>
99

1010
<name>Spring Boot Protocol</name>
@@ -49,7 +49,7 @@
4949
<connection>scm:git:https://github.com/wangzihaogithub/spring-boot-protocol.git</connection>
5050
<developerConnection>scm:git:[email protected]:wangzihaogithub/spring-boot-protocol.git</developerConnection>
5151
<url>[email protected]:wangzihaogithub/spring-boot-protocol.git</url>
52-
<tag>v2.3.23</tag>
52+
<tag>v2.3.24</tag>
5353
</scm>
5454

5555
<!-- 开发者信息 -->

src/main/java/com/github/netty/protocol/servlet/ServletHttpAsyncRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ private void decodePaths() {
219219
} else {
220220
queryString = null;
221221
}
222-
this.requestURI = com.github.netty.protocol.servlet.ServletContext.normPath(requestURI);
222+
this.requestURI = requestURI;
223223
this.queryString = queryString;
224224
}
225225
this.decodePathsFlag = true;

src/main/java/com/github/netty/protocol/servlet/ServletHttpForwardRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ private void decodePaths() {
221221
} else {
222222
queryString = null;
223223
}
224-
this.requestURI = com.github.netty.protocol.servlet.ServletContext.normPath(requestURI);
224+
this.requestURI = requestURI;
225225
this.queryString = queryString;
226226
}
227227
this.decodePathsFlag = true;

src/main/java/com/github/netty/protocol/servlet/ServletHttpIncludeRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ private void decodePaths() {
221221
} else {
222222
queryString = null;
223223
}
224-
this.requestURI = com.github.netty.protocol.servlet.ServletContext.normPath(requestURI);
224+
this.requestURI = requestURI;
225225
this.queryString = queryString;
226226
}
227227
this.decodePathsFlag = true;

src/main/java/com/github/netty/protocol/servlet/ServletHttpServletRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ private void decodePaths() {
514514
} else {
515515
queryString = null;
516516
}
517-
this.requestURI = com.github.netty.protocol.servlet.ServletContext.normPath(requestURI);
517+
this.requestURI = requestURI;
518518
this.queryString = queryString;
519519
this.decodePathsFlag = true;
520520
}

src/main/resources/server.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
server.info=Github Spring-boot-protocol/2.3.23
17-
server.number=2.3.23
18-
server.built=Sep 13 2024 13:23:31 UTC+8
16+
server.info=Github Spring-boot-protocol/2.3.24
17+
server.number=2.3.24
18+
server.built=Apr 12 2025 19:14:22 UTC+8

0 commit comments

Comments
 (0)