Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Thomas Vachuska
2014-10-30 16:04:46 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2ac1b82ff221c6be60fd09c565e994b562948ab6
2ac1b82f
1 parent
ee66e616
Changed onos-app-calendar web.xml to use class-based, rather than package based resource loading.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
apps/calendar/src/main/webapp/WEB-INF/web.xml
apps/calendar/src/main/webapp/WEB-INF/web.xml
View file @
2ac1b82
...
...
@@ -24,15 +24,19 @@
<servlet-name>
JAX-RS Service
</servlet-name>
<servlet-class>
com.sun.jersey.spi.container.servlet.ServletContainer
</servlet-class>
<init-param>
<param-name>
com.sun.jersey.config.property.packages
</param-name>
<param-value>
org.onlab.onos.calendar
</param-value>
<param-name>
com.sun.jersey.config.property.resourceConfigClass
</param-name>
<param-value>
com.sun.jersey.api.core.ClassNamesResourceConfig
</param-value>
</init-param>
<init-param>
<param-name>
com.sun.jersey.config.property.classnames
</param-name>
<param-value>
org.onlab.onos.calendar.BandwidthCalendarResource
</param-value>
</init-param>
<load-on-startup>
10
</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>
JAX-RS Service
</servlet-name>
<url-pattern>
/
rs/
*
</url-pattern>
<url-pattern>
/*
</url-pattern>
</servlet-mapping>
</web-app>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment