Last active
December 21, 2015 13:09
-
-
Save lzhoucs/009647d1aff04ab3ed38 to your computer and use it in GitHub Desktop.
A very simple css to style code within <pre>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Code style</title> | |
<style> | |
pre { | |
padding: 5px; | |
border-style: solid; | |
border-width: 1px; | |
border-color: #CCCCCC; | |
background-color: #f3f5e9; | |
} | |
</style> | |
</head> | |
<body> | |
A piece of java code | |
<pre> | |
/* | |
* Copyright 2002-2006 the original author or authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
package org.springframework.dao; | |
/** | |
* Exception thrown on failure to aquire a lock during an update, | |
* for example during a "select for update" statement. | |
* | |
* @author Rod Johnson | |
*/ | |
public class CannotAcquireLockException extends PessimisticLockingFailureException { | |
/** | |
* Constructor for CannotAcquireLockException. | |
* @param msg the detail message | |
*/ | |
public CannotAcquireLockException(String msg) { | |
super(msg); | |
} | |
/** | |
* Constructor for CannotAcquireLockException. | |
* @param msg the detail message | |
* @param cause the root cause from the data access API in use | |
*/ | |
public CannotAcquireLockException(String msg, Throwable cause) { | |
super(msg, cause); | |
} | |
} | |
</pre> | |
A piece of xml code | |
<pre> | |
<bean id="clientConnector" class="org.springframework.jmx.support.MBeanServerConnectionFactoryBean"> | |
<property name="serviceUrl" value="service:jmx:rmi://localhost:9875"/> | |
</bean> | |
</pre> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment