rename and add 2lab

This commit is contained in:
2019-03-19 10:20:21 +01:00
parent 67ac4941e6
commit dc8945dd80
5 changed files with 21 additions and 2 deletions
+1 -1
View File
@@ -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>
+3
View File
@@ -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;
+12
View File
@@ -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 {
}