uris.xml
2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:services="http://www.alibaba.com/schema/services"
xmlns:uris="http://www.alibaba.com/schema/services/uris"
xsi:schemaLocation="http://www.alibaba.com/schema/services http://localhost:8080/schema/services.xsd
http://www.alibaba.com/schema/services/uris http://localhost:8080/schema/services-uris.xsd
http://www.springframework.org/schema/beans http://localhost:8080/schema/www.springframework.org/schema/beans/spring-beans.xsd">
<services:uris>
<uris:uri id="server" requestAware="true"/>
<uris:servlet-uri id="httpServer" requestAware="true">
<servletPath>/</servletPath>
</uris:servlet-uri>
<uris:servlet-uri id="httpsServer" requestAware="true">
<serverScheme>https</serverScheme>
<serverPort>443</serverPort>
<servletPath>/</servletPath>
</uris:servlet-uri>
<uris:turbine-uri id="homeLink" exposed="true" extends="${web.railway.server.scheme}Server">
<componentPath>/</componentPath>
</uris:turbine-uri>
<uris:turbine-uri id="railwayLink" exposed="true" extends="${web.railway.server.scheme}Server">
<componentPath>/railway/</componentPath>
</uris:turbine-uri>
<uris:turbine-uri id="adminLink" exposed="true" extends="${web.railway.server.scheme}Server">
<componentPath>/admin/</componentPath>
</uris:turbine-uri>
<uris:turbine-content-uri id="homeContent" exposed="true" extends="homeLink">
<componentPath>/home/</componentPath>
</uris:turbine-content-uri>
<uris:turbine-content-uri id="railwayContent" exposed="true" extends="railwayLink"/>
<uris:turbine-content-uri id="adminContent" exposed="true" extends="adminLink"/>
</services:uris>
</beans:beans>