Changeset 4767
- Timestamp:
- 03/19/14 10:46:53 (11 years ago)
- Location:
- vlo/branches/vlo-3.0/vlo-web-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vlo/branches/vlo-3.0/vlo-web-app/pom.xml
r4749 r4767 153 153 <scope>test</scope> 154 154 <type>jar</type> 155 </dependency> 156 <!-- JavaMelody for application monitoring --> 157 <dependency> 158 <groupId>net.bull.javamelody</groupId> 159 <artifactId>javamelody-core</artifactId> 160 <version>1.49.0</version> 161 <exclusions> 162 <exclusion> 163 <groupId>org.springframework</groupId> 164 <artifactId>spring-aop</artifactId> 165 </exclusion> 166 <exclusion> 167 <groupId>org.springframework</groupId> 168 <artifactId>spring-context</artifactId> 169 </exclusion> 170 </exclusions> 155 171 </dependency> 156 172 </dependencies> -
vlo/branches/vlo-3.0/vlo-web-app/src/main/webapp/WEB-INF/web.xml
r4583 r4767 45 45 <param-value>WEB-INF/applicationContext.xml</param-value> 46 46 </context-param> 47 48 <!-- 49 Enable JavaMelody for application monitoring 50 More info at https://code.google.com/p/javamelody/ 51 --> 52 53 <filter> 54 <filter-name>monitoring</filter-name> 55 <filter-class>net.bull.javamelody.MonitoringFilter</filter-class> 56 </filter> 57 <filter-mapping> 58 <filter-name>monitoring</filter-name> 59 <url-pattern>/*</url-pattern> 60 </filter-mapping> 61 <listener> 62 <listener-class>net.bull.javamelody.SessionListener</listener-class> 63 </listener> 47 64 </web-app>
Note: See TracChangeset
for help on using the changeset viewer.