jsf.js_next_gen 4.0.4-beta.6 → 4.0.4-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docs/functions/myfaces.ab.html +8 -3
- package/dist/window/faces-development.js +157 -147
- package/dist/window/faces-development.js.map +1 -1
- package/dist/window/faces.js +1 -1
- package/dist/window/faces.js.map +1 -1
- package/dist/window/jsf-development.js +157 -147
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js +1 -1
- package/dist/window/jsf.js.map +1 -1
- package/package.json +6 -6
- package/src/main/typescript/@types/definitions/index.d.ts +1 -1
- package/src/main/typescript/api/_api.ts +31 -15
- package/src/main/typescript/impl/AjaxImpl.ts +5 -5
- package/src/main/typescript/impl/util/Assertions.ts +1 -1
- package/src/main/typescript/impl/util/Lang.ts +2 -2
- package/src/main/typescript/impl/util/XhrQueueController.ts +1 -1
- package/src/main/typescript/impl/xhrCore/ErrorData.ts +2 -2
- package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +1 -1
- package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +5 -5
- package/src/main/typescript/impl/xhrCore/XhrFormData.ts +1 -1
- package/src/main/typescript/impl/xhrCore/XhrRequest.ts +1 -1
- package/src/main/typescript/myfaces/OamSubmit.ts +1 -1
- package/src/main/typescript/test/api/MyFacesABTest.spec.ts +117 -0
- package/src/main/typescript/test/frameworkBase/LangTest.spec.ts +11 -14
- package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +8 -10
- package/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.ts +6 -2
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.ts +9 -9
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +5 -4
- package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +30 -30
- package/src/main/typescript/test/impl/ImplTest.spec.ts +2 -2
- package/src/main/typescript/test/impl/ImplTest_23.spec.ts +2 -2
- package/src/main/typescript/test/impl/SeparatorCharsTest.spec.ts +2 -2
- package/src/main/typescript/test/impl/util/ExtDomQueryTest.spec.ts +1 -1
- package/src/main/typescript/test/myfaces/OamSubmit.spec.ts +4 -4
- package/src/main/typescript/test/myfaces/OnLoad.spec.ts +1 -1
- package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/ClientWindow.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/ErrorChainTest.spec.ts +5 -5
- package/src/main/typescript/test/xhrCore/EventTests.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.ts +5 -5
- package/src/main/typescript/test/xhrCore/OamSubmitTest.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +5 -5
- package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +10 -10
- package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +9 -9
- package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +24 -24
- package/src/main/typescript/test/xhrCore/ResponseTest23.spec.ts +25 -25
- package/src/main/typescript/test/xhrCore/ShadowDomTest.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/WebsocketTest.ts +8 -8
- package/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.ts +10 -10
- package/src/main/typescript/test/xhrCore/XhrRequestProgress.spec.ts +3 -3
- package/target/api/_api.js +17 -3
- package/target/api/_api.js.map +1 -1
- package/target/impl/AjaxImpl.js +5 -5
- package/target/impl/AjaxImpl.js.map +1 -1
- package/target/impl/util/Assertions.js.map +1 -1
- package/target/impl/util/Lang.js.map +1 -1
- package/target/impl/util/XhrQueueController.js +1 -1
- package/target/impl/util/XhrQueueController.js.map +1 -1
- package/target/impl/xhrCore/ErrorData.js +2 -2
- package/target/impl/xhrCore/ErrorData.js.map +1 -1
- package/target/impl/xhrCore/RequestDataResolver.js.map +1 -1
- package/target/impl/xhrCore/ResponseProcessor.js +2 -2
- package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
- package/target/impl/xhrCore/XhrFormData.js +1 -1
- package/target/impl/xhrCore/XhrFormData.js.map +1 -1
- package/target/impl/xhrCore/XhrRequest.js +1 -1
- package/target/impl/xhrCore/XhrRequest.js.map +1 -1
- package/target/myfaces/OamSubmit.js +1 -1
- package/target/myfaces/OamSubmit.js.map +1 -1
- package/target/test/api/MyFacesABTest.spec.js +117 -0
- package/target/test/api/MyFacesABTest.spec.js.map +1 -0
- package/target/test/frameworkBase/LangTest.spec.js +8 -11
- package/target/test/frameworkBase/LangTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +3 -5
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +15 -8
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MappingProbes.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +44 -40
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
- package/target/test/impl/ImplTest.spec.js +1 -1
- package/target/test/impl/ImplTest.spec.js.map +1 -1
- package/target/test/impl/ImplTest_23.spec.js +1 -1
- package/target/test/impl/ImplTest_23.spec.js.map +1 -1
- package/target/test/impl/SeparatorCharsTest.spec.js +2 -2
- package/target/test/impl/SeparatorCharsTest.spec.js.map +1 -1
- package/target/test/impl/util/ExtDomQueryTest.spec.js +1 -1
- package/target/test/impl/util/ExtDomQueryTest.spec.js.map +1 -1
- package/target/test/myfaces/OamSubmit.spec.js +4 -4
- package/target/test/myfaces/OamSubmit.spec.js.map +1 -1
- package/target/test/myfaces/OnLoad.spec.js +1 -1
- package/target/test/myfaces/OnLoad.spec.js.map +1 -1
- package/target/test/queue/AsynchronousQueueTest.spec.js +1 -1
- package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
- package/target/test/xhrCore/ClientWindow.spec.js.map +1 -1
- package/target/test/xhrCore/ErrorChainTest.spec.js +2 -2
- package/target/test/xhrCore/ErrorChainTest.spec.js.map +1 -1
- package/target/test/xhrCore/EventTests.spec.js +2 -2
- package/target/test/xhrCore/EventTests.spec.js.map +1 -1
- package/target/test/xhrCore/FileUploadTest.spec.js +1 -1
- package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
- package/target/test/xhrCore/NamespacesRequestTest.spec.js +2 -2
- package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/OamSubmitTest.spec.js +1 -1
- package/target/test/xhrCore/OamSubmitTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestParamsTest.spec.js +2 -2
- package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest.spec.js +4 -4
- package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest_23.spec.js +3 -3
- package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest.spec.js +2 -2
- package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest23.spec.js +3 -2
- package/target/test/xhrCore/ResponseTest23.spec.js.map +1 -1
- package/target/test/xhrCore/ShadowDomTest.spec.js +1 -1
- package/target/test/xhrCore/ShadowDomTest.spec.js.map +1 -1
- package/target/test/xhrCore/TobagoFileUploadTest.spec.js +1 -1
- package/target/test/xhrCore/TobagoFileUploadTest.spec.js.map +1 -1
- package/target/test/xhrCore/WebsocketTest.js +2 -2
- package/target/test/xhrCore/WebsocketTest.js.map +1 -1
- package/target/test/xhrCore/XhrFormDataTest.spec.js +1 -1
- package/target/test/xhrCore/XhrFormDataTest.spec.js.map +1 -1
- package/target/test/xhrCore/XhrRequestProgress.spec.js +1 -1
- package/target/test/xhrCore/XhrRequestProgress.spec.js.map +1 -1
- package/webpack.config.ts +2 -2
- package/faulty_response.html +0 -167
- package/pom.xml +0 -68
- package/remap.js +0 -43
- package/remap.js.map +0 -1
- package/target/classes/application.properties +0 -1
- package/target/classes/com/example/jsfs_js_ts/DecoratedFacesJS.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/DecoratingResourceHandlerWrapper.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/FacesJSMapFileResourceWrapper.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/FacesJSMappingDecorator.class +0 -0
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -4
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -4
- package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +0 -1
- package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +0 -1
- package/target/surefire-reports/TEST-com.example.jsfs_js_ts.JsfsJsTsApplicationTests.xml +0 -76
- package/target/surefire-reports/com.example.jsfs_js_ts.JsfsJsTsApplicationTests.txt +0 -7
- package/target/test-classes/.gz +0 -0
- package/target/test-classes/com/example/jsfs_js_ts/JsfsJsTsApplicationTests.class +0 -0
- package/target/test-classes/fileuploadtest.html +0 -24
- package/target/test-classes/jsf-development.js +0 -3559
- package/target/test-classes/jsf-development.js.br +0 -0
- package/target/test-classes/jsf-development.js.gz +0 -0
- package/target/test-classes/jsf-development.js.map +0 -1
- package/target/test-classes/jsf.js +0 -3
- package/target/test-classes/jsf.js.br +0 -0
- package/target/test-classes/jsf.js.gz +0 -0
- package/webpack.config.js +0 -54
- package/webpack.config.js.map +0 -1
package/faulty_response.html
DELETED
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang='de'>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset='UTF-8'>
|
|
5
|
-
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
|
6
|
-
<title>Test
|
|
7
|
-
</title>
|
|
8
|
-
<link rel='stylesheet' href='./fixtures/css/tobago.css' type='text/css'>
|
|
9
|
-
<link rel='stylesheet' href='./fixtures/css/bootstrap-icons.css' type='text/css'>
|
|
10
|
-
<script src='./fixtures/jakarta.faces.resource/faces.js.jsf' type='text/javascript'></script>
|
|
11
|
-
<script src='./fixtures/js/tobago.js' type='module'></script>
|
|
12
|
-
</head>
|
|
13
|
-
<body>
|
|
14
|
-
<tobago-page locale='de' class='container-fluid' id='page' focus-on-error='true' wait-overlay-delay-full='1000' wait-overlay-delay-ajax='1000'>
|
|
15
|
-
<form action='/content/010-input/Input.xhtml' id='page::form' method='post' accept-charset='UTF-8' data-tobago-context-path=''>
|
|
16
|
-
<input type='hidden' name='jakarta.faces.source' id='jakarta.faces.source' disabled='disabled'>
|
|
17
|
-
<tobago-focus id='page::lastFocusId'>
|
|
18
|
-
<input type='hidden' name='page::lastFocusId' id='page::lastFocusId::field'>
|
|
19
|
-
</tobago-focus>
|
|
20
|
-
<input type='hidden' name='org.apache.myfaces.tobago.webapp.Secret' id='org.apache.myfaces.tobago.webapp.Secret' value='secretValue'>
|
|
21
|
-
<div class='tobago-page-menuStore'>
|
|
22
|
-
</div>
|
|
23
|
-
<div class='tobago-page-toastStore'>
|
|
24
|
-
</div>
|
|
25
|
-
<span id='page::faces-state-container'><input type='hidden' name='jakarta.faces.ViewState' id='j_id__v_0:jakarta.faces.ViewState:1' value='viewStateValue' autocomplete='off'><input type='hidden' name='jakarta.faces.RenderKitId' value='tobago'><input type='hidden' id='j_id__v_0:jakarta.faces.ClientWindow:1' name='jakarta.faces.ClientWindow' value='clientWindowValue'></span>
|
|
26
|
-
<button type='button' id='page:button' name='page:button' class='tobago-button btn btn-secondary tobago-auto-spacing'><tobago-behavior event='click' client-id='page:button' execute='page:button' render='page'></tobago-behavior><span>page ajax</span></button>
|
|
27
|
-
</form>
|
|
28
|
-
<noscript>
|
|
29
|
-
<div class='tobago-page-noscript'>Diese Seite benötigt JavaScript, allerdings ist JavaScript in Ihrem Browser derzeit deaktiviert. Um JavaScript zu aktivieren, lesen Sie ggf. die Anleitung Ihres Browsers.
|
|
30
|
-
</div>
|
|
31
|
-
</noscript>
|
|
32
|
-
</tobago-page>
|
|
33
|
-
</body>
|
|
34
|
-
</html>
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
---- update ---
|
|
39
|
-
|
|
40
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
41
|
-
<partial-response id='j_id__v_0'>
|
|
42
|
-
<changes>
|
|
43
|
-
<update id='page'><![CDATA[
|
|
44
|
-
<html lang='de'>
|
|
45
|
-
<head>
|
|
46
|
-
<meta charset='UTF-8'/>
|
|
47
|
-
<meta name='viewport' content='width=device-width, initial-scale=1.0'/>
|
|
48
|
-
<title>Test
|
|
49
|
-
</title>
|
|
50
|
-
<link rel='stylesheet' href='./fixtures/css/tobago.css' type='text/css'>
|
|
51
|
-
<link rel='stylesheet' href='./fixtures/css/bootstrap-icons.css' type='text/css'>
|
|
52
|
-
<script src='./fixtures/jakarta.faces.resource/faces.js.jsf' type='text/javascript'></script>
|
|
53
|
-
<script src='./fixtures/js/tobago.js' type='module'></script>
|
|
54
|
-
</head>
|
|
55
|
-
<body>
|
|
56
|
-
<tobago-page locale='de' class='container-fluid' id='page' focus-on-error='true' wait-overlay-delay-full='1000' wait-overlay-delay-ajax='1000'>
|
|
57
|
-
<form action='/content/010-input/Input.xhtml' id='page::form' method='post' accept-charset='UTF-8' data-tobago-context-path=''>
|
|
58
|
-
<input type='hidden' name='jakarta.faces.source' id='jakarta.faces.source' disabled='disabled'/>
|
|
59
|
-
<tobago-focus id='page::lastFocusId'>
|
|
60
|
-
<input type='hidden' name='page::lastFocusId' id='page::lastFocusId::field'/>
|
|
61
|
-
</tobago-focus>
|
|
62
|
-
<input type='hidden' name='org.apache.myfaces.tobago.webapp.Secret' id='org.apache.myfaces.tobago.webapp.Secret' value='secretValue'/>
|
|
63
|
-
<div class='tobago-page-menuStore'>
|
|
64
|
-
</div>
|
|
65
|
-
<div class='tobago-page-toastStore'>
|
|
66
|
-
</div>
|
|
67
|
-
<span id='page::faces-state-container'></span>
|
|
68
|
-
<button type='button' id='page:button' name='page:button' class='tobago-button btn btn-secondary tobago-auto-spacing'><tobago-behavior event='click' client-id='page:button' execute='page:button' render='page'></tobago-behavior><span>page ajax</span></button>
|
|
69
|
-
</form>
|
|
70
|
-
<noscript>
|
|
71
|
-
<div class='tobago-page-noscript'>Diese Seite benötigt JavaScript, allerdings ist JavaScript in Ihrem Browser derzeit deaktiviert. Um JavaScript zu aktivieren, lesen Sie ggf. die Anleitung Ihres Browsers.
|
|
72
|
-
</div>
|
|
73
|
-
</noscript>
|
|
74
|
-
</tobago-page>
|
|
75
|
-
</body>
|
|
76
|
-
</html>]]>
|
|
77
|
-
</update>
|
|
78
|
-
<update id='j_id__v_0:jakarta.faces.ViewState:1'><![CDATA[viewStateValue]]>
|
|
79
|
-
</update>
|
|
80
|
-
<update id='j_id__v_0:jakarta.faces.ClientWindow:1'><![CDATA[clientWindowValue]]>
|
|
81
|
-
</update>
|
|
82
|
-
</changes>
|
|
83
|
-
</partial-response>`;
|
|
84
|
-
|
|
85
|
-
static SHADOW_DOM_UPDATE=`
|
|
86
|
-
<partial-response>
|
|
87
|
-
<changes><update id="shadowContent"><![CDATA[<div id="shadowContent">after update</div>]]></update></changes>
|
|
88
|
-
</partial-response>
|
|
89
|
-
`;
|
|
90
|
-
|
|
91
|
-
static UPDATE_INSERT_2 = `
|
|
92
|
-
<partial-response>
|
|
93
|
-
<changes>
|
|
94
|
-
<update id="changesArea"><![CDATA[
|
|
95
|
-
<div id='changesArea'>update succeeded 2</div><script type='text/javascript'>document.getElementById('evalarea2').innerHTML='embedded script at update succeed';</script>
|
|
96
|
-
]]></update>
|
|
97
|
-
<insert id="inserted1" >
|
|
98
|
-
<before id='changesArea'><![CDATA[insert before succeeded should display before test1<script type='text/javascript'>document.getElementById('evalarea3').innerHTML='embedded script at insert succeed';</script>]]></before>
|
|
99
|
-
</insert>
|
|
100
|
-
<insert id="inserted2">
|
|
101
|
-
<after id='changesArea'><![CDATA[insert after succeeded should display after test1]]></after>
|
|
102
|
-
</insert>
|
|
103
|
-
</changes>
|
|
104
|
-
</partial-response>
|
|
105
|
-
|
|
106
|
-
---- after ----
|
|
107
|
-
|
|
108
|
-
<head>
|
|
109
|
-
<meta charset="UTF-8">
|
|
110
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
111
|
-
<title>Test
|
|
112
|
-
</title>
|
|
113
|
-
<link rel="stylesheet" href="./fixtures/css/tobago.css" type="text/css">
|
|
114
|
-
<link rel="stylesheet" href="./fixtures/css/bootstrap-icons.css" type="text/css">
|
|
115
|
-
<script src="./fixtures/jakarta.faces.resource/faces.js.jsf" type="text/javascript"></script>
|
|
116
|
-
<script src="./fixtures/js/tobago.js" type="module"></script>
|
|
117
|
-
</head>
|
|
118
|
-
<body>
|
|
119
|
-
<html>
|
|
120
|
-
<head>
|
|
121
|
-
<meta charset="UTF-8">
|
|
122
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
123
|
-
<title>Test
|
|
124
|
-
</title>
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
<link rel="stylesheet" href="./fixtures/css/tobago.css" type="text/css">
|
|
128
|
-
<link rel="stylesheet" href="./fixtures/css/bootstrap-icons.css" type="text/css">
|
|
129
|
-
<script src="./fixtures/jakarta.faces.resource/faces.js.jsf" type="text/javascript"></script>
|
|
130
|
-
<script src="./fixtures/js/tobago.js" type="module"></script>
|
|
131
|
-
</head>
|
|
132
|
-
<body>
|
|
133
|
-
<tobago-page locale="de" class="container-fluid" id="page" focus-on-error="true" wait-overlay-delay-full="1000"
|
|
134
|
-
wait-overlay-delay-ajax="1000">
|
|
135
|
-
<form action="/content/010-input/Input.xhtml" id="page::form" method="post" accept-charset="UTF-8"
|
|
136
|
-
data-tobago-context-path="">
|
|
137
|
-
<input type="hidden" name="jakarta.faces.source" id="jakarta.faces.source" disabled="disabled">
|
|
138
|
-
<tobago-focus id="page::lastFocusId">
|
|
139
|
-
<input type="hidden" name="page::lastFocusId" id="page::lastFocusId::field">
|
|
140
|
-
</tobago-focus>
|
|
141
|
-
<input type="hidden" name="org.apache.myfaces.tobago.webapp.Secret" id="org.apache.myfaces.tobago.webapp.Secret"
|
|
142
|
-
value="secretValue">
|
|
143
|
-
<div class="tobago-page-menuStore">
|
|
144
|
-
</div>
|
|
145
|
-
<div class="tobago-page-toastStore">
|
|
146
|
-
</div>
|
|
147
|
-
<span id="page::faces-state-container"></span>
|
|
148
|
-
<button type="button" id="page:button" name="page:button"
|
|
149
|
-
class="tobago-button btn btn-secondary tobago-auto-spacing">
|
|
150
|
-
<tobago-behavior event="click" client-id="page:button" execute="page:button"
|
|
151
|
-
render="page"></tobago-behavior>
|
|
152
|
-
<span>page ajax</span></button>
|
|
153
|
-
<input type="hidden" name="jakarta.faces.ViewState" value="viewStateValue"
|
|
154
|
-
id="j_id__v_0:jakarta.faces.ViewState:1"><input type="hidden" '="" name="jakarta.faces.ClientWindow"
|
|
155
|
-
value="clientWindowValue" id="j_id__v_0:jakarta.faces.ClientWindow:1">
|
|
156
|
-
</form>
|
|
157
|
-
<noscript>
|
|
158
|
-
<div class='tobago-page-noscript'>Diese Seite benötigt JavaScript, allerdings ist JavaScript in Ihrem Browser
|
|
159
|
-
derzeit deaktiviert. Um JavaScript zu aktivieren, lesen Sie ggf. die Anleitung Ihres Browsers.
|
|
160
|
-
</div>
|
|
161
|
-
</noscript>
|
|
162
|
-
</tobago-page>
|
|
163
|
-
|
|
164
|
-
</body>
|
|
165
|
-
</html>
|
|
166
|
-
|
|
167
|
-
</body>
|
package/pom.xml
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
3
|
-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
4
|
-
<modelVersion>4.0.0</modelVersion>
|
|
5
|
-
<parent>
|
|
6
|
-
<groupId>org.springframework.boot</groupId>
|
|
7
|
-
<artifactId>spring-boot-starter-parent</artifactId>
|
|
8
|
-
<version>2.1.9.RELEASE</version>
|
|
9
|
-
<relativePath/> <!-- lookup parent from repository -->
|
|
10
|
-
</parent>
|
|
11
|
-
<groupId>com.example</groupId>
|
|
12
|
-
<artifactId>jsfs_js_ts</artifactId>
|
|
13
|
-
<version>4.0</version>
|
|
14
|
-
<name>jsfs_js_ts</name>
|
|
15
|
-
<description>Demo project for Spring Boot</description>
|
|
16
|
-
|
|
17
|
-
<properties>
|
|
18
|
-
<java.version>1.8</java.version>
|
|
19
|
-
<myfaces-version>4.0.0-SNAPSHOT</myfaces-version>
|
|
20
|
-
</properties>
|
|
21
|
-
|
|
22
|
-
<dependencies>
|
|
23
|
-
<dependency>
|
|
24
|
-
<groupId>org.springframework.boot</groupId>
|
|
25
|
-
<artifactId>spring-boot-starter-web</artifactId>
|
|
26
|
-
</dependency>
|
|
27
|
-
|
|
28
|
-
<dependency>
|
|
29
|
-
<groupId>org.springframework.boot</groupId>
|
|
30
|
-
<artifactId>spring-boot-devtools</artifactId>
|
|
31
|
-
<scope>runtime</scope>
|
|
32
|
-
<optional>true</optional>
|
|
33
|
-
</dependency>
|
|
34
|
-
<dependency>
|
|
35
|
-
<groupId>org.projectlombok</groupId>
|
|
36
|
-
<artifactId>lombok</artifactId>
|
|
37
|
-
<optional>true</optional>
|
|
38
|
-
</dependency>
|
|
39
|
-
<dependency>
|
|
40
|
-
<groupId>org.springframework.boot</groupId>
|
|
41
|
-
<artifactId>spring-boot-starter-test</artifactId>
|
|
42
|
-
<scope>test</scope>
|
|
43
|
-
</dependency>
|
|
44
|
-
<dependency>
|
|
45
|
-
<groupId>org.apache.myfaces.core</groupId>
|
|
46
|
-
<artifactId>myfaces-api</artifactId>
|
|
47
|
-
<version>${myfaces-version}</version>
|
|
48
|
-
<scope>provided</scope>
|
|
49
|
-
</dependency>
|
|
50
|
-
|
|
51
|
-
<dependency>
|
|
52
|
-
<groupId>org.apache.myfaces.core</groupId>
|
|
53
|
-
<artifactId>myfaces-impl</artifactId>
|
|
54
|
-
<version>${myfaces-version}</version>
|
|
55
|
-
<scope>provided</scope>
|
|
56
|
-
</dependency>
|
|
57
|
-
</dependencies>
|
|
58
|
-
|
|
59
|
-
<build>
|
|
60
|
-
<plugins>
|
|
61
|
-
<plugin>
|
|
62
|
-
<groupId>org.springframework.boot</groupId>
|
|
63
|
-
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
64
|
-
</plugin>
|
|
65
|
-
</plugins>
|
|
66
|
-
</build>
|
|
67
|
-
|
|
68
|
-
</project>
|
package/remap.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
-
* contributor license agreements. See the NOTICE file distributed with
|
|
3
|
-
* this work for additional information regarding copyright ownership.
|
|
4
|
-
* The ASF licenses this file to you under the Apache License, Version 2.0
|
|
5
|
-
* (the "License"); you may not use this file except in compliance with
|
|
6
|
-
* the License. You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
/**
|
|
17
|
-
* we are remapping the mappings in our dist file, to meet the expected
|
|
18
|
-
* jsf loading criteria...
|
|
19
|
-
* luckily we can use more than one source map entry
|
|
20
|
-
* so either one is found and the other is not
|
|
21
|
-
*/
|
|
22
|
-
//the replace in file plugin meets our system independent grep/awk criteria
|
|
23
|
-
//does pretty much what grep and awk do on unix systems
|
|
24
|
-
var replace = require('replace-in-file');
|
|
25
|
-
// we ned to fetch the proper argument
|
|
26
|
-
var args = process.argv.slice(2);
|
|
27
|
-
// and remap it into our proper option
|
|
28
|
-
var buildStage = (args[0] == "--development") ? "-development" : "";
|
|
29
|
-
console.log("fixing mapping file references for jsf");
|
|
30
|
-
var option = {
|
|
31
|
-
//development
|
|
32
|
-
files: 'dist/**/*.js',
|
|
33
|
-
from: (buildStage == "-development") ? /jsf-development.js\.map/g : /jsf.js\.map/g,
|
|
34
|
-
to: "jsf".concat(buildStage, ".js.map\n//# sourceMappingURL=jsf").concat(buildStage, ".js.map.jsf?ln=javax.faces")
|
|
35
|
-
};
|
|
36
|
-
try {
|
|
37
|
-
var result = replace.sync(option);
|
|
38
|
-
console.log("mapping file references fixed!");
|
|
39
|
-
console.log('Replacement results:', result);
|
|
40
|
-
}
|
|
41
|
-
catch (error) {
|
|
42
|
-
console.error('Error occurred:', error);
|
|
43
|
-
}
|
package/remap.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"remap.js","sourceRoot":"","sources":["remap.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH;;;;;GAKG;AAEH,2EAA2E;AAC3E,uDAAuD;AACvD,IAAM,OAAO,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;AAE3C,sCAAsC;AACtC,IAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AACnC,sCAAsC;AACtC,IAAM,UAAU,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,eAAe,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC;AACtE,OAAO,CAAC,GAAG,CAAC,wCAAwC,CAAC,CAAC;AAEtD,IAAI,MAAM,GAAG;IACT,aAAa;IACb,KAAK,EAAE,cAAc;IACrB,IAAI,EAAE,CAAC,UAAU,IAAI,cAAc,CAAC,CAAC,CAAC,CAAC,0BAA0B,CAAC,CAAC,CAAC,cAAc;IAClF,EAAE,EAAE,aAAM,UAAU,8CAAoC,UAAU,+BAA4B;CACjG,CAAA;AAED,IAAI;IACA,IAAM,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;IAC9C,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,MAAM,CAAC,CAAC;CAC/C;AAAC,OAAO,KAAK,EAAE;IACZ,OAAO,CAAC,KAAK,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;CAC3C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/Users/werpu2/development/workspace/jsfs_js_ts/src/main/java/com/example/jsfs_js_ts/DecoratingResourceHandlerWrapper.java
|
|
2
|
-
/Users/werpu2/development/workspace/jsfs_js_ts/src/main/java/com/example/jsfs_js_ts/DecoratedFacesJS.java
|
|
3
|
-
/Users/werpu2/development/workspace/jsfs_js_ts/src/main/java/com/example/jsfs_js_ts/FacesJSMapFileResourceWrapper.java
|
|
4
|
-
/Users/werpu2/development/workspace/jsfs_js_ts/src/main/java/com/example/jsfs_js_ts/FacesJSMappingDecorator.java
|
package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
com/example/jsfs_js_ts/JsfsJsTsApplicationTests.class
|
package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/Users/werpu2/development/workspace/jsfs_js_ts/src/test/java/com/example/jsfs_js_ts/JsfsJsTsApplicationTests.java
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" name="com.example.jsfs_js_ts.JsfsJsTsApplicationTests" time="0.332" tests="1" errors="1" skipped="0" failures="0">
|
|
3
|
-
<properties>
|
|
4
|
-
<property name="java.specification.version" value="23"/>
|
|
5
|
-
<property name="sun.jnu.encoding" value="UTF-8"/>
|
|
6
|
-
<property name="java.class.path" value="/Users/werpu2/development/workspace/jsfs_js_ts/target/test-classes:/Users/werpu2/development/workspace/jsfs_js_ts/target/classes:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.1.9.RELEASE/spring-boot-starter-web-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter/2.1.9.RELEASE/spring-boot-starter-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.1.9.RELEASE/spring-boot-starter-logging-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/Users/werpu2/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/Users/werpu2/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar:/Users/werpu2/.m2/repository/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar:/Users/werpu2/.m2/repository/org/slf4j/jul-to-slf4j/1.7.28/jul-to-slf4j-1.7.28.jar:/Users/werpu2/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/Users/werpu2/.m2/repository/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.1.9.RELEASE/spring-boot-starter-json-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9.3/jackson-databind-2.9.9.3.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.9/jackson-datatype-jdk8-2.9.9.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.9/jackson-datatype-jsr310-2.9.9.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.9/jackson-module-parameter-names-2.9.9.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.1.9.RELEASE/spring-boot-starter-tomcat-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.26/tomcat-embed-core-9.0.26.jar:/Users/werpu2/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/9.0.26/tomcat-embed-el-9.0.26.jar:/Users/werpu2/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.26/tomcat-embed-websocket-9.0.26.jar:/Users/werpu2/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.17.Final/hibernate-validator-6.0.17.Final.jar:/Users/werpu2/.m2/repository/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar:/Users/werpu2/.m2/repository/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar:/Users/werpu2/.m2/repository/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar:/Users/werpu2/.m2/repository/org/springframework/spring-web/5.1.10.RELEASE/spring-web-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-beans/5.1.10.RELEASE/spring-beans-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-webmvc/5.1.10.RELEASE/spring-webmvc-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-aop/5.1.10.RELEASE/spring-aop-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-context/5.1.10.RELEASE/spring-context-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-expression/5.1.10.RELEASE/spring-expression-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-devtools/2.1.9.RELEASE/spring-boot-devtools-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot/2.1.9.RELEASE/spring-boot-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.1.9.RELEASE/spring-boot-autoconfigure-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/projectlombok/lombok/1.18.10/lombok-1.18.10.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.1.9.RELEASE/spring-boot-starter-test-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-test/2.1.9.RELEASE/spring-boot-test-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.1.9.RELEASE/spring-boot-test-autoconfigure-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar:/Users/werpu2/.m2/repository/net/minidev/json-smart/2.3/json-smart-2.3.jar:/Users/werpu2/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar:/Users/werpu2/.m2/repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar:/Users/werpu2/.m2/repository/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28.jar:/Users/werpu2/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/werpu2/.m2/repository/org/assertj/assertj-core/3.11.1/assertj-core-3.11.1.jar:/Users/werpu2/.m2/repository/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar:/Users/werpu2/.m2/repository/net/bytebuddy/byte-buddy/1.9.16/byte-buddy-1.9.16.jar:/Users/werpu2/.m2/repository/net/bytebuddy/byte-buddy-agent/1.9.16/byte-buddy-agent-1.9.16.jar:/Users/werpu2/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/Users/werpu2/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/werpu2/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar:/Users/werpu2/.m2/repository/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar:/Users/werpu2/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/Users/werpu2/.m2/repository/org/springframework/spring-core/5.1.10.RELEASE/spring-core-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-jcl/5.1.10.RELEASE/spring-jcl-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-test/5.1.10.RELEASE/spring-test-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/xmlunit/xmlunit-core/2.6.3/xmlunit-core-2.6.3.jar:/Users/werpu2/.m2/repository/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar:/Users/werpu2/.m2/repository/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar:/Users/werpu2/.m2/repository/org/apache/myfaces/core/myfaces-api/4.0.0-SNAPSHOT/myfaces-api-4.0.0-SNAPSHOT.jar:/Users/werpu2/.m2/repository/org/apache/myfaces/core/myfaces-impl/4.0.0-SNAPSHOT/myfaces-impl-4.0.0-SNAPSHOT.jar:"/>
|
|
7
|
-
<property name="java.vm.vendor" value="Homebrew"/>
|
|
8
|
-
<property name="sun.arch.data.model" value="64"/>
|
|
9
|
-
<property name="java.vendor.url" value="https://github.com/Homebrew/homebrew-core/issues"/>
|
|
10
|
-
<property name="os.name" value="Mac OS X"/>
|
|
11
|
-
<property name="java.vm.specification.version" value="23"/>
|
|
12
|
-
<property name="sun.java.launcher" value="SUN_STANDARD"/>
|
|
13
|
-
<property name="user.country" value="AT"/>
|
|
14
|
-
<property name="sun.boot.library.path" value="/opt/homebrew/Cellar/openjdk/23/libexec/openjdk.jdk/Contents/Home/lib"/>
|
|
15
|
-
<property name="sun.java.command" value="/Users/werpu2/development/workspace/jsfs_js_ts/target/surefire/surefirebooter3922700166628316350.jar /Users/werpu2/development/workspace/jsfs_js_ts/target/surefire 2024-12-06T17-02-55_268-jvmRun1 surefire9135945613022080465tmp surefire_04387892158547648548tmp"/>
|
|
16
|
-
<property name="http.nonProxyHosts" value="local|*.local|169.254/16|*.169.254/16"/>
|
|
17
|
-
<property name="jdk.debug" value="release"/>
|
|
18
|
-
<property name="surefire.test.class.path" value="/Users/werpu2/development/workspace/jsfs_js_ts/target/test-classes:/Users/werpu2/development/workspace/jsfs_js_ts/target/classes:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.1.9.RELEASE/spring-boot-starter-web-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter/2.1.9.RELEASE/spring-boot-starter-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.1.9.RELEASE/spring-boot-starter-logging-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/Users/werpu2/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/Users/werpu2/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar:/Users/werpu2/.m2/repository/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar:/Users/werpu2/.m2/repository/org/slf4j/jul-to-slf4j/1.7.28/jul-to-slf4j-1.7.28.jar:/Users/werpu2/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/Users/werpu2/.m2/repository/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.1.9.RELEASE/spring-boot-starter-json-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.9.3/jackson-databind-2.9.9.3.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.9/jackson-datatype-jdk8-2.9.9.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.9/jackson-datatype-jsr310-2.9.9.jar:/Users/werpu2/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.9/jackson-module-parameter-names-2.9.9.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.1.9.RELEASE/spring-boot-starter-tomcat-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.26/tomcat-embed-core-9.0.26.jar:/Users/werpu2/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/9.0.26/tomcat-embed-el-9.0.26.jar:/Users/werpu2/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.26/tomcat-embed-websocket-9.0.26.jar:/Users/werpu2/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.17.Final/hibernate-validator-6.0.17.Final.jar:/Users/werpu2/.m2/repository/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar:/Users/werpu2/.m2/repository/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar:/Users/werpu2/.m2/repository/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar:/Users/werpu2/.m2/repository/org/springframework/spring-web/5.1.10.RELEASE/spring-web-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-beans/5.1.10.RELEASE/spring-beans-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-webmvc/5.1.10.RELEASE/spring-webmvc-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-aop/5.1.10.RELEASE/spring-aop-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-context/5.1.10.RELEASE/spring-context-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-expression/5.1.10.RELEASE/spring-expression-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-devtools/2.1.9.RELEASE/spring-boot-devtools-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot/2.1.9.RELEASE/spring-boot-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.1.9.RELEASE/spring-boot-autoconfigure-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/projectlombok/lombok/1.18.10/lombok-1.18.10.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.1.9.RELEASE/spring-boot-starter-test-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-test/2.1.9.RELEASE/spring-boot-test-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.1.9.RELEASE/spring-boot-test-autoconfigure-2.1.9.RELEASE.jar:/Users/werpu2/.m2/repository/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar:/Users/werpu2/.m2/repository/net/minidev/json-smart/2.3/json-smart-2.3.jar:/Users/werpu2/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar:/Users/werpu2/.m2/repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar:/Users/werpu2/.m2/repository/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28.jar:/Users/werpu2/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/werpu2/.m2/repository/org/assertj/assertj-core/3.11.1/assertj-core-3.11.1.jar:/Users/werpu2/.m2/repository/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar:/Users/werpu2/.m2/repository/net/bytebuddy/byte-buddy/1.9.16/byte-buddy-1.9.16.jar:/Users/werpu2/.m2/repository/net/bytebuddy/byte-buddy-agent/1.9.16/byte-buddy-agent-1.9.16.jar:/Users/werpu2/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/Users/werpu2/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/werpu2/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.jar:/Users/werpu2/.m2/repository/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar:/Users/werpu2/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/Users/werpu2/.m2/repository/org/springframework/spring-core/5.1.10.RELEASE/spring-core-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-jcl/5.1.10.RELEASE/spring-jcl-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/springframework/spring-test/5.1.10.RELEASE/spring-test-5.1.10.RELEASE.jar:/Users/werpu2/.m2/repository/org/xmlunit/xmlunit-core/2.6.3/xmlunit-core-2.6.3.jar:/Users/werpu2/.m2/repository/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar:/Users/werpu2/.m2/repository/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar:/Users/werpu2/.m2/repository/org/apache/myfaces/core/myfaces-api/4.0.0-SNAPSHOT/myfaces-api-4.0.0-SNAPSHOT.jar:/Users/werpu2/.m2/repository/org/apache/myfaces/core/myfaces-impl/4.0.0-SNAPSHOT/myfaces-impl-4.0.0-SNAPSHOT.jar:"/>
|
|
19
|
-
<property name="sun.cpu.endian" value="little"/>
|
|
20
|
-
<property name="user.home" value="/Users/werpu2"/>
|
|
21
|
-
<property name="user.language" value="de"/>
|
|
22
|
-
<property name="java.specification.vendor" value="Oracle Corporation"/>
|
|
23
|
-
<property name="java.version.date" value="2024-09-17"/>
|
|
24
|
-
<property name="java.home" value="/opt/homebrew/Cellar/openjdk/23/libexec/openjdk.jdk/Contents/Home"/>
|
|
25
|
-
<property name="file.separator" value="/"/>
|
|
26
|
-
<property name="basedir" value="/Users/werpu2/development/workspace/jsfs_js_ts"/>
|
|
27
|
-
<property name="java.vm.compressedOopsMode" value="Zero based"/>
|
|
28
|
-
<property name="line.separator" value=" "/>
|
|
29
|
-
<property name="java.vm.specification.vendor" value="Oracle Corporation"/>
|
|
30
|
-
<property name="java.specification.name" value="Java Platform API Specification"/>
|
|
31
|
-
<property name="apple.awt.application.name" value="ForkedBooter"/>
|
|
32
|
-
<property name="surefire.real.class.path" value="/Users/werpu2/development/workspace/jsfs_js_ts/target/surefire/surefirebooter3922700166628316350.jar"/>
|
|
33
|
-
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/>
|
|
34
|
-
<property name="ftp.nonProxyHosts" value="local|*.local|169.254/16|*.169.254/16"/>
|
|
35
|
-
<property name="java.runtime.version" value="23"/>
|
|
36
|
-
<property name="user.name" value="werpu2"/>
|
|
37
|
-
<property name="stdout.encoding" value="UTF-8"/>
|
|
38
|
-
<property name="path.separator" value=":"/>
|
|
39
|
-
<property name="os.version" value="14.5"/>
|
|
40
|
-
<property name="java.runtime.name" value="OpenJDK Runtime Environment"/>
|
|
41
|
-
<property name="file.encoding" value="UTF-8"/>
|
|
42
|
-
<property name="java.vm.name" value="OpenJDK 64-Bit Server VM"/>
|
|
43
|
-
<property name="java.vendor.version" value="Homebrew"/>
|
|
44
|
-
<property name="localRepository" value="/Users/werpu2/.m2/repository"/>
|
|
45
|
-
<property name="java.vendor.url.bug" value="https://github.com/Homebrew/homebrew-core/issues"/>
|
|
46
|
-
<property name="java.io.tmpdir" value="/var/folders/8n/_lr2tnb92750c0xdpq8k0rb00000gp/T/"/>
|
|
47
|
-
<property name="java.version" value="23"/>
|
|
48
|
-
<property name="user.dir" value="/Users/werpu2/development/workspace/jsfs_js_ts"/>
|
|
49
|
-
<property name="os.arch" value="aarch64"/>
|
|
50
|
-
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/>
|
|
51
|
-
<property name="native.encoding" value="UTF-8"/>
|
|
52
|
-
<property name="java.library.path" value="/Users/werpu2/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/>
|
|
53
|
-
<property name="java.vm.info" value="mixed mode, sharing"/>
|
|
54
|
-
<property name="stderr.encoding" value="UTF-8"/>
|
|
55
|
-
<property name="java.vendor" value="Homebrew"/>
|
|
56
|
-
<property name="java.vm.version" value="23"/>
|
|
57
|
-
<property name="sun.io.unicode.encoding" value="UnicodeBig"/>
|
|
58
|
-
<property name="socksNonProxyHosts" value="local|*.local|169.254/16|*.169.254/16"/>
|
|
59
|
-
<property name="java.class.version" value="67.0"/>
|
|
60
|
-
</properties>
|
|
61
|
-
<testcase name="initializationError" classname="com.example.jsfs_js_ts.JsfsJsTsApplicationTests" time="0.003">
|
|
62
|
-
<error message="Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test" type="java.lang.IllegalStateException">java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
|
|
63
|
-
</error>
|
|
64
|
-
<system-out><![CDATA[17:02:55.884 [main] DEBUG org.springframework.test.context.junit4.SpringJUnit4ClassRunner - SpringJUnit4ClassRunner constructor called with [class com.example.jsfs_js_ts.JsfsJsTsApplicationTests]
|
|
65
|
-
17:02:55.888 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
|
|
66
|
-
17:02:55.896 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)]
|
|
67
|
-
17:02:55.919 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.example.jsfs_js_ts.JsfsJsTsApplicationTests] from class [org.springframework.boot.test.context.SpringBootTestContextBootstrapper]
|
|
68
|
-
17:02:55.930 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.example.jsfs_js_ts.JsfsJsTsApplicationTests], using SpringBootContextLoader
|
|
69
|
-
17:02:55.934 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.example.jsfs_js_ts.JsfsJsTsApplicationTests]: class path resource [com/example/jsfs_js_ts/JsfsJsTsApplicationTests-context.xml] does not exist
|
|
70
|
-
17:02:55.935 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.example.jsfs_js_ts.JsfsJsTsApplicationTests]: class path resource [com/example/jsfs_js_ts/JsfsJsTsApplicationTestsContext.groovy] does not exist
|
|
71
|
-
17:02:55.935 [main] INFO org.springframework.test.context.support.AbstractContextLoader - Could not detect default resource locations for test class [com.example.jsfs_js_ts.JsfsJsTsApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}.
|
|
72
|
-
17:02:55.935 [main] INFO org.springframework.test.context.support.AnnotationConfigContextLoaderUtils - Could not detect default configuration classes for test class [com.example.jsfs_js_ts.JsfsJsTsApplicationTests]: JsfsJsTsApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
|
|
73
|
-
17:02:55.988 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.example.jsfs_js_ts.JsfsJsTsApplicationTests]
|
|
74
|
-
]]></system-out>
|
|
75
|
-
</testcase>
|
|
76
|
-
</testsuite>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
-------------------------------------------------------------------------------
|
|
2
|
-
Test set: com.example.jsfs_js_ts.JsfsJsTsApplicationTests
|
|
3
|
-
-------------------------------------------------------------------------------
|
|
4
|
-
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.332 s <<< FAILURE! - in com.example.jsfs_js_ts.JsfsJsTsApplicationTests
|
|
5
|
-
initializationError(com.example.jsfs_js_ts.JsfsJsTsApplicationTests) Time elapsed: 0.003 s <<< ERROR!
|
|
6
|
-
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
|
|
7
|
-
|
package/target/test-classes/.gz
DELETED
|
File without changes
|
|
Binary file
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<html>
|
|
2
|
-
<head>
|
|
3
|
-
<script type="text/javascript" src="./jsf-development.js"></script>
|
|
4
|
-
</head>
|
|
5
|
-
<body>
|
|
6
|
-
|
|
7
|
-
<form id="form" enctype="multipart/form-data">
|
|
8
|
-
<input type="file" id="form:fileinput" name="form:fileinput"></input>
|
|
9
|
-
<input type="text" id="form:textinput" name="form:textinput"></input>
|
|
10
|
-
<div id="form:booga1">
|
|
11
|
-
<input type="button" id="form:booga1:sourceid" value="click me" onclick="clickIt(event)"></input>
|
|
12
|
-
</div>
|
|
13
|
-
</form>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<script type="text/javascript">
|
|
17
|
-
function clickIt(evt) {
|
|
18
|
-
jsf.ajax.request(document.getElementById("form:booga1"), evt, {execute:"@this form:fileinput", render:"@form"})
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
</script>
|
|
22
|
-
|
|
23
|
-
</body>
|
|
24
|
-
</html>
|