This file contains hidden or 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
| SHA1 for '12345': | |
| 8cb2237d0679ca88db6464eac60da96345513964 |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://www.springframework.org/schema/beans | |
| http://www.springframework.org/schema/beans/spring-beans-4.1.xsd"> | |
| <bean id="bookDAO" class="co.karans.phonebook.web.domain.DefaultBookDAO" /> | |
| </beans> |
This file contains hidden or 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
| <?xml version="1.0" encoding="ISO-8859-1" ?> | |
| <web-app xmlns="http://java.sun.com/xml/ns/j2ee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" | |
| version="2.4"> | |
| <servlet> | |
| <servlet-name>abc</servlet-name> | |
| <servlet-class>web.MyServlet</servlet-class> | |
| </servlet> | |
| <servlet-mapping> |
This file contains hidden or 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
| <persistence xmlns="http://java.sun.com/xml/ns/persistence" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" | |
| version="2.0"> | |
| <persistence-unit name="xyz"> | |
| <provider>org.hibernate.ejb.HibernatePersistence</provider> | |
| <class>domain.Person</class> | |
| <properties> | |
| <property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver"/> |
This file contains hidden or 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
| Sorted list of directories consuming gigabytes of hard disk in [dir]: | |
| du -h [dir] | grep '^[0-9,]\+G' | sort -nr | |
| --------------------------------------------------------------------- |
This file contains hidden or 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
| SELECT subgroupid, item_order, id, code, eduname, stdate, enddate, edudate, eduprice, edudiscount, completeness, shown, no_reg | |
| FROM `tbleducation` | |
| WHERE groupid =26 AND shown = 1 | |
| ORDER BY subgroupid, item_order | |
| LIMIT 0 , 1000 | |
| ------------------------- | |
| SELECT id, eduname, description | |
| FROM `tbleducation` |
NewerOlder