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" />
|
||||
<outputRelativeToContentRoot value="true" />
|
||||
<module name="WST" />
|
||||
<module name="WST_Lab1" />
|
||||
<module name="WST_Labs" />
|
||||
</profile>
|
||||
</annotationProcessing>
|
||||
</component>
|
||||
|
||||
Generated
+3
@@ -1,6 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="JavaScriptSettings">
|
||||
<option name="languageLevel" value="ES6" />
|
||||
</component>
|
||||
<component name="MavenProjectsManager">
|
||||
<option name="originalFiles">
|
||||
<list>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
|
||||
package Lab1;
|
||||
|
||||
|
||||
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