mirror of
https://github.com/svek95/WST_Labs.git
synced 2026-05-17 18:44:02 +03:00
rename and add 2lab
This commit is contained in:
Generated
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||||
<outputRelativeToContentRoot value="true" />
|
<outputRelativeToContentRoot value="true" />
|
||||||
<module name="WST" />
|
<module name="WST" />
|
||||||
<module name="WST_Lab1" />
|
<module name="WST_Labs" />
|
||||||
</profile>
|
</profile>
|
||||||
</annotationProcessing>
|
</annotationProcessing>
|
||||||
</component>
|
</component>
|
||||||
|
|||||||
Generated
+3
@@ -1,6 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||||
|
<component name="JavaScriptSettings">
|
||||||
|
<option name="languageLevel" value="ES6" />
|
||||||
|
</component>
|
||||||
<component name="MavenProjectsManager">
|
<component name="MavenProjectsManager">
|
||||||
<option name="originalFiles">
|
<option name="originalFiles">
|
||||||
<list>
|
<list>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
|
package Lab1;
|
||||||
|
|
||||||
|
|
||||||
import Lab1.CarWebService;
|
import Lab1.CarWebService;
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package Lab2;
|
||||||
|
|
||||||
|
//import Lab1.CarWebService;
|
||||||
|
|
||||||
|
import javax.xml.ws.Endpoint;
|
||||||
|
|
||||||
|
public class App {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
String url = "http://localhost:8081/CarService";
|
||||||
|
Endpoint.publish(url, new CarWebCrudService());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package Lab2;
|
||||||
|
|
||||||
|
public class CarWebCrudService {
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user